ecometer

Replace $i++ with ++$i

(Development)
#63

$i++ has the disadvantage of generating a temporary variable when incremented, which does not happen with ++$i.

Avoid:

$i++

which generates 4 opcodes.

Use instead:

++$i

which only generates 3.

This best practice should only be applied if it is coherent with your project's specifications.
Under CC-By-NX-SA license