php check how much time each instruction takes to complete

187

php check how much time each instruction takes to complete -

$start = microtime(true);
while (...) {

}
$time_elapsed_secs = microtime(true) - $start;

Comments

Submit
0 Comments