Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Returns the name of the class of an object
get_class(object $object = ?): string
});



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";
$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";