Processed in a speedy 77 milliseconds. Created 12 years ago2011-09-03 01:42:54 UTC by Unbreakable Unbreakable

Created 12 years ago2011-09-03 01:42:54 UTC by Unbreakable Unbreakable

Posted 12 years ago2011-09-03 01:42:54 UTC Post #298591
Just looking for this code.
Unbreakable UnbreakableWindows 7.9 Rating!
Posted 12 years ago2011-09-03 06:29:05 UTC Post #298593
PM penguinboy next time.
Posted 12 years ago2011-09-03 06:51:01 UTC Post #298595
Wow, that was really helpful Kraken...
Unbreakable UnbreakableWindows 7.9 Rating!
Posted 12 years ago2011-09-03 09:52:37 UTC Post #298602
It's good advice.
Archie ArchieGoodbye Moonmen
Posted 12 years ago2011-09-03 15:21:30 UTC Post #298613
Hmmm, so I take it this code is too large for here..? So yes I will PM him. Thanks Kraken.
Unbreakable UnbreakableWindows 7.9 Rating!
Posted 12 years ago2011-09-28 17:21:15 UTC Post #299540
microtime() motherfucker, do you use it?
Posted 12 years ago2011-09-28 17:43:42 UTC Post #299544
function get_execution_time()
{
static $start = null;
if($start === null)
{
    $start = microtime(true);
    return 0.0;
}
return microtime(true) - $start;
}

Call it when your php script starts, and call it again at the end to get the time it finishes in.
TheGrimReafer TheGrimReaferADMININATOR
You must be logged in to post a response.