Re: [PHP] Getting the parsing time of a script

2003-05-31 Thread Ernest E Vogelsinger
At 12:39 31.05.2003, Bix said: [snip] >Is there any way getting the time taken to parse a script? > >IE: > >This page took 0.13 seconds to generate. > >Is it a predefined variable anywhere? [snip] $start = microtime()

Re: [PHP] Getting the parsing time of a script

2003-05-31 Thread David Otton
On Sat, 31 May 2003 11:39:41 +0100, you wrote: >Is there any way getting the time taken to parse a script? > >IE: > >This page took 0.13 seconds to generate. Call microtime() at the beginning and end of the script. $timeTaken = $timeEnd - $timeStart; see http://uk2.php.net/manual/en/function.m

[PHP] Getting the parsing time of a script

2003-05-31 Thread Bix
Is there any way getting the time taken to parse a script? IE: This page took 0.13 seconds to generate. Is it a predefined variable anywhere? Thanks ;o) Bix. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php