Karam Chand wrote:
Darn missed it. Looking into the docs I am using code
somthing like this:
If you are really keen about chaning +1 to ++ and double quotes to
single quotes in the hope of shaving off a few milliseconds in execution
time you might want to try something like xdebug.
--
Radith
Darn missed it. Looking into the docs I am using code
somthing like this:
$start = microtime();
$result = mysql_query ( $query, $mysql );
$end = microtime();
$diff = microtime_diff ($start, $end);
function microtimdiff() is given by:
function microtime_
Karam Chand wrote:
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 u
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 mic
4 matches
Mail list logo