Hello,

In Win32 API to profile a job we use the following
method:


 timetaken = GetTickCount();
 /* do some job */
 timetaken = GetTickCount() - timetaken;

In this way timetaken returns you the time taken by
the job to complete?

How can I get it in PHP. I want the exact figure in
ms? I used microtime() and the samples given in
php.net but none of them correctly returns the
difference only in ms?
 
Regards,
Karam   



                
_______________________________
Do you Yahoo!?
Win 1 of 4,000 free domain names from Yahoo! Enter now.
http://promotions.yahoo.com/goldrush

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

Reply via email to