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.microtime.php

and read the comments.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to