Home  >  Article  >  Backend Development  >  PHP learning to calculate the running time of the program_PHP tutorial

PHP learning to calculate the running time of the program_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:301055browse

php learning to calculate program running time

function gettime(){
$starttime=microtime(true); //Get the time when the program starts execution
mt_rand(1,10); //The code you execute liehuo. net
$endtime=microtime(true);//Get the time when the program execution ends
$total=$endtime-$starttime; //Calculate the difference
return $total;
}
echo gettime();
?>

Original address: http://www.52blogger.com/archives/5

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364584.htmlTechArticleHow to calculate the running time of the program for PHP learning? function gettime(){ $starttime=microtime(true); // Get the time when the program starts executing mt_rand(1,10); //The code you execute liehuo. net $endt...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn