当前位置:Gxlcms > PHP教程 > PHP计时函数

PHP计时函数

时间:2021-07-01 10:21:17 帮助过:34人阅读


//函数:计时函数
//用法:Echo Runtime(1);
  1. //函数:计时函数
  2. //用法:Echo Runtime(1);
  3. Function Runtime($mode=0){
  4. Static $s;
  5. IF(!$mode){
  6. $s=microtime();
  7. Return;
  8. }
  9. $e=microtime();
  10. $s=Explode(" ", $s);
  11. $e=Explode(" ", $e);
  12. Return Sprintf("%.2f ms",($e[1]+$e[0]-$s[1]-$s[0])*1000);
  13. }

人气教程排行