3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Initial Configuration global $aHash; $i = 0; $tmp = ''; while($i < 10000) { $tmp .= 'a'; ++$i; } $aHash = array_fill(100000000000000000000000, 100, $tmp); unset($i, $tmp); // Test Source function Test1_9() { global $aHash; /* The Test */ $t = microtime(true); reset($aHash); for ($i=0; $i<$=5; $i++) echo $aHash[$i]; return (microtime(true) - $t); } // Variable Clean-up function Test1_End() { global $aHash; unset($aHash); }
Output for 5.4.0 - 5.4.12
Parse error: syntax error, unexpected '=', expecting variable (T_VARIABLE) or '$' in Cr86B on line 22
Process exited with code 255.
Output for 5.3.0 - 5.3.22
Parse error: syntax error, unexpected '=', expecting T_VARIABLE or '$' in Cr86B on line 22
Process exited with code 255.

preferences:
171.03 ms | 1399 KiB | 43 Q