|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-03-31 16:13 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
<? function getmicrotime() { $mtime = microtime(); $mtime2 = explode(" ",$mtime); $mtime3 = $mtime2[1] + $mtime2[0]; return ($mtime3); } $debut = getmicrotime(); echo $debut . "<BR>"; echo "hello word!!!!"; $fin = getmicrotime(); echo $fin . "<BR>"; echo $fin - $debut; ?> Under linux Redhat/apache1.3.12 , it's works fine. Under NT4, sometime, $fin is less than $debut.