Microtime µs s: 0.40181800 1734112040 Time : 1734112040 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