HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership/benchmark/index.php
<html>

<head>
</head>

<body>Please wait...<br>
<?php
/**
 * Simple function to replicate PHP 5 behaviour
 */
function microtime_float()
{
   list($usec, $sec) = explode(" ", microtime());
   return ((float)$usec + (float)$sec);
}

$time_start = microtime_float();

for ($i = 0; $i <= 10000000; $i++);

$time_end = microtime_float();
$time = $time_end - $time_start;

echo "Time taken: $time seconds\n";
echo "<br><br>";
echo phpinfo();

?>
</body>

</html>