<?php get_class(object $object = ?): string
<?php }); echo "PHP Version:\t\t", phpversion(), "\n"; echo "Loop\t\t\t", get_class(Loop::get()), "\n"; echo "Time\t\t\t", date('r'), "\n"; echo str_repeat('-', 50), "\n";
<?php $timeTaken = $endTime - $beginTime; echo "PHP Version:\t\t", phpversion(), "\n"; echo "Loop\t\t\t", get_class(Loop::get()), "\n"; echo "Time\t\t\t", date('r'), "\n"; echo "Time taken\t\t", $timeTaken, " seconds\n"; echo "Runs per second\t\t", round($runs / $timeTaken), "\n";