Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version | System time (s) | User time (s) | Memory (MiB) |
---|---|---|---|
5.3.29 | 0.010 | 0.029 | 25.66 |
<?php
// Print the value of $x every 10 statements
register_tick_function ('printf', "The value of \$x is %d\n", &$x);
declare (ticks=10) {
for ($x = 1; $x <= 10; ++$x) {
echo $x, "\n";
}
}
?>
Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version | System time (s) | User time (s) | Memory (MiB) |
---|---|---|---|
5.3.29 | 0.010 | 0.029 | 25.66 |