n8w Posted December 23, 2006 Share Posted December 23, 2006 For some reason .. I [b]somtimes[/b] get a negative number when I track how long a query takesmost of the time I get a number like:0.064271but sometimes I get a negative number:[b]-0.765811[/b]Here is my code[code] # execute SQL statement $start =""; $querytime=""; $start = microtime(TRUE); $retid = mysql_query($sql) or die(mysql_error()); $querytime = microtime(TRUE) - $start;[/code]You can see it if you go to http://www.illustrationmundo.com/illustrators.php?feature=c and look at the bottom left corner .. hit refresh and the times will change Link to comment https://forums.phpfreaks.com/topic/31714-why-would-i-get-a-negative-number-on-a-query-time/ Share on other sites More sharing options...
AndyB Posted December 24, 2006 Share Posted December 24, 2006 http://php.net/microtime - see the comment and example by "php at washboardabs dot net" Link to comment https://forums.phpfreaks.com/topic/31714-why-would-i-get-a-negative-number-on-a-query-time/#findComment-147130 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.