欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP计时函数

程序员文章站 2024-01-12 10:29:58
...

//函数:计时函数
//用法: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. }
复制代码
相关标签: PHP计时函数