<?php date(string $format, ?int $timestamp = null): 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 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";