Javascript debugger
Website design
↑
Returns a hash of strings with information about the current process CPU usage. The indices of the hash are:
<?php
$times = posix_times();
print_r($times);
?>
The above example will output something similar to:
Array
(
[ticks] => 25814410
[utime] => 1
[stime] => 1
[cutime] => 0
[cstime] => 0
)