3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = microtime(true); switch (pcntl_fork()) { case -1: die('problem'); break; case 0: $a = 234325; for ($i = 0; $i < 1000000; ++$i) { // wasting CPU $a *= $i; } break; default: pcntl_wait(); echo "the child took " . (microtime(true) - $start) . " micro seconds"; }

preferences:
36.16 ms | 402 KiB | 5 Q