Getting Precise Times in PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:58:13Zhttp://stackoverflow.com/feeds/question/230792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/230792/getting-precise-times-in-php1Getting Precise Times in PHPWilco2008-10-23T18:12:35Z2008-10-23T20:46:20Z
<p>I have noticed that regardless of a given script's execution time, every date() call will return the same timestamp regardless of where the function is called within the script. It looks like it just returns the time at which the script first started executing.</p>
<p>For logging purposes, it would be extremely useful to be able to get incremental timestamps from within a script. Is this possible? Is there a way to do this that is relatively lightweight?</p>
<p><strong>Edit:</strong> Would the example for the <a href="http://us.php.net/microtime" rel="nofollow">microtime()</a> function suggests it might do this. Can anyone confirm?</p>
<p><strong>Update:</strong> microtime() does work, but I cannot format it with the date() function because date() only accepts timestamps as integers (so no microseconds). How can I get a properly formatted date from the value returned by microtime() ?</p>
http://stackoverflow.com/questions/230792/getting-precise-times-in-php/230807#2308071Answer by ceejayoz for Getting Precise Times in PHPceejayoz2008-10-23T18:15:41Z2008-10-23T18:15:41Z<p><a href="http://us.php.net/microtime" rel="nofollow">http://us.php.net/microtime</a> gives me different times within the same script.</p>
http://stackoverflow.com/questions/230792/getting-precise-times-in-php/230856#2308560Answer by CMS for Getting Precise Times in PHPCMS2008-10-23T18:24:50Z2008-10-23T18:24:50Z<p>You can use the <a href="http://pear.php.net/package/Benchmark" rel="nofollow">Pear Benchmarking package</a> for getting timing and profiling information.</p>
http://stackoverflow.com/questions/230792/getting-precise-times-in-php/231010#2310101Answer by Paolo Bergantino for Getting Precise Times in PHPPaolo Bergantino2008-10-23T19:04:20Z2008-10-23T19:12:42Z<p>I ran this code on my machine:</p>
<pre><code><?php
$time_start = time();
sleep(2);
$time_end = time();
print 'Start: ' . date("m/d/Y @ g:i:sA", $time_start) . '<br>';
print 'End: ' . date("m/d/Y @ g:i:sA", $time_end);
?>
</code></pre>
<p>And it output:</p>
<pre><code>Start: 10/23/2008 @ 3:12:23PM
End: 10/23/2008 @ 3:12:25PM
</code></pre>
<p>Leading me to believe <code>time()</code> does not just return the time when execution started.</p>
http://stackoverflow.com/questions/230792/getting-precise-times-in-php/231012#2310122Answer by Stefan Gehrig for Getting Precise Times in PHPStefan Gehrig2008-10-23T19:04:35Z2008-10-23T19:10:28Z<p>First of all, <a href="http://de2.php.net/manual/en/function.date.php" rel="nofollow">date()</a> is used to format a timestamp - it's just the default behaviour that it'll use the current timestamp, when <code>date()</code> is called without second parameter. The timestamp used will be the timestamp the moment the function is called - calling <code>date('Y-m-d')</code> is the same as calling <code>date('Y-m-d', time())</code> where <a href="http://de2.php.net/manual/en/function.time.php" rel="nofollow">time()</a> will give you the</p>
<blockquote>
<p>[...] the current time measured in the
number of seconds since the Unix Epoch
(January 1 1970 00:00:00 GMT).</p>
</blockquote>
<p>You only get the same timestamp every time you call <code>date()</code> because your script is too fast and runs within one second resulting in no timestamp-change.</p>
<p>To address your second problem of formatting the <a href="http://de2.php.net/manual/en/function.microtime.php" rel="nofollow">microtime()</a> return value, you can do the following (untested)</p>
<pre><code>function formatTime($microtime, $format)
{
list($timestamp, $fraction) = explode('.', $microtime);
return date($format, (int)$timestamp) . '.' . $fraction;
}
</code></pre>
<p>The value given to <code>$microtime</code> should be a <code>float</code>, which you get when you pass <code>true</code> as a parameter to <code>microtime()</code></p>
http://stackoverflow.com/questions/230792/getting-precise-times-in-php/231442#2314420Answer by Michelle for Getting Precise Times in PHPMichelle2008-10-23T20:46:20Z2008-10-23T20:46:20Z<p>I wonder if it depends on the version of PHP being used? My recollection was that time() returned the timestamp of the start of the request, but <a href="http://ca3.php.net/manual/en/function.time.php" rel="nofollow">I see in the manual</a>, that is wrong.</p>
<p>The note says "Timestamp of the start of the request is available in $_SERVER['REQUEST_TIME'] since PHP 5.1." Does this imply that prior to PHP 5.1, time() returned the timestamp at the start of the request?</p>