; } ?>
:WEBPUBLISH: ZeitmessungMicrotime µs s: 0.71014600 1776824444 Time : 1776824444 Sekunden seit Januar 1 1970 00:00:00 GMT
Did nothing in 0.00109 seconds<?php
echo '<p>Microtime µs s: ' . microtime() . ' Time : ' . time() . ' Sekunden seit Januar 1 1970 00:00:00 GMT</p>';
function getzeit(){
$mtime = microtime();
$mtime = explode(' ',$mtime);
return ($mtime[1] + $mtime[0]);
}
$time_start = getzeit();
usleep(1000); // Sleep for a while
$time = round(getzeit()- $time_start,5);
echo "Did nothing in $time seconds\n";
?>
© Oliver Mezger