show/hide this revision's text 2 deleted 83 characters in body

If you only care about precision up to seconds, you can do

I ran this code on my machine:

<?php
$time_start = microtime(true)time();

sleep(2);

$time_end = microtime(true)time();

print 'Start: ' . date("m/d/Y @ g:i:sA", (int) $time_start) . '<br>';
print 'End: ' . date("m/d/Y @ g:i:sA", (int) $time_end);
?>

The true in the call to microtime() makes

And it return as a float.

That example outputsoutput:

Start: 10/23/2008 @ 3:02:26PM
3:12:23PM
End: 10/23/2008 @ 3:02:28PM

Hope it helps3:12:25PM

Leading me to believe time() does not just return the time when execution started.

show/hide this revision's text 1

If you only care about precision up to seconds, you can do:

<?php
$time_start = microtime(true);

sleep(2);

$time_end = microtime(true);

print 'Start: ' . date("m/d/Y @ g:i:sA", (int) $time_start) . '<br>';
print 'End: ' . date("m/d/Y @ g:i:sA", (int) $time_end);
?>

The true in the call to microtime() makes it return as a float.

That example outputs:

Start: 10/23/2008 @ 3:02:26PM
End: 10/23/2008 @ 3:02:28PM

Hope it helps.