The
microtime()
function returns the current Unix timestamp and microseconds.
<code><span>echo</span>(microtime()); <span>0.47813000</span><span>1451273280</span></code>
microtime(true)
returns a floating point number
Calculate running time code:
<code><span>$startTime</span> = microtime(<span>true</span>); <span>$endTime</span> = microtime(<span>true</span>); <span>$runTime</span> = (<span>$endTime</span>-<span>$startTime</span>)*<span>1000</span> . <span>' ms'</span>;</code>
The above introduces the PHP calculation program running time, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.