vote up 2 vote down star
2

PHP is obviously tracking the amount of CPU time that a particular script has used (to enforce the max_execution_time limit). Is there a way to get access to this inside of the script? I'd like to include some logging with my tests about how much CPU was burnt in the actual PHP (the time is not incremented when the script is sitting and waiting for the database).

Update: Just wanted to make it clear that this is on a Linux box.

flag

47% accept rate

3 Answers

vote up 4 vote down check

On unixoid systems, you can use getrusage, like:

// Script start
$rustart = getrusage();

// Code ...

// Script end
function rutime($ru, $rustart, $index) {
    return ($ru["ru_$index.tv_sec"]*1000 + $ru["ru_$index.tv_usec"]) -
        ($rustart["ru_$index.tv_sec"]*1000 + $rustart["ru_$index.tv_usec"]);
}

$ru = getrusage();
echo "This process used " . rutime($ru, $rustart, "utime") .
    " ms for its computations\n";
echo "It spent " . rutime($ru, $rustart, "stime") .
    " ms in system calls\n";

Note that you don't need to calculate a difference if you are spawning a php instance for every test.

link|flag
Awesome, thank you! – twk Feb 11 at 1:17
Should the value at the end be subtracted from the value at the start of the script? I'm getting some really weird numbers if I don't. Like a page that took 0.05 seconds to generate is saying it took 6s of CPU time...is this correct? See here: blog.rompe.org/node/85 – Darryl Hein Feb 22 at 21:09
@Darryl Hein: That's because you are using a previously used instance of php. Modern web servers reuse the same instance over and over for performance reasons. I updated the answer to reflect that and present a solution that works in both cases. – phihag Feb 22 at 22:18
@Darryl Hein: Oh, and you get weird results because you are using string concatenation instead of addition ;) – phihag Feb 22 at 22:19
vote up 1 vote down

The cheapest and dirtiest way to do it is simply make microtime() calls at places in your code you want to benchmark. Do it right before and right after database queries and it's simple to remove those durations from the rest of your script execution time.

A hint: your PHP execution time is rarely going to be the thing that makes your script timeout. If a script times out it's almost always going to be a call to an external resource.

PHP microtime documentation: http://us.php.net/microtime

link|flag
vote up 1 vote down

I think you should look at xdebug. The profiling options will give you a head start toward knowing many process related items.

http://www.xdebug.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.