php code execution time
Posted
by Bharanikumar
on Stack Overflow
See other posts from Stack Overflow
or by Bharanikumar
Published on 2010-05-31T08:49:24Z
Indexed on
2010/05/31
8:52 UTC
Read the original article
Hit count: 257
Hi
How to find my code execution time ,
Am using the below snippet,
am not happy with that ?
list ($msec, $sec) = explode(' ', microtime());
$microtime = (float)$msec + (float)$sec;
Regards
© Stack Overflow or respective owner