$bm = microtime_float();
for ($a = 0; ++$a < 1000000;) {
	$a % 2 === 0;
}
echo microtime_float() - $bm;

0.16197299957275
$bm = microtime_float();
for ($a = 0; ++$a < 1000000;) {
	$a & 1 === 0;
}
echo microtime_float() - $bm;

0.18476486206055

Nota: Este servidor corre PHP 4, por lo que se definió microtime_float como en el ejemplo 447