When the call to a function doesn't have any side effect, what is the point of making the call if the results are ignored? In such cases, either the function call is useless and should be dropped, or the source code doesn't behave as expected.

Noncompliant Code Example

strlen($name); // Noncompliant; "strlen" has no side effect

Compliant Solution

$length = strlen($name);

See