PHP计时函数
时间:2021-07-01 10:21:17
帮助过:34人阅读
//函数:计时函数
//用法:Echo Runtime(1);
- //函数:计时函数
- //用法:Echo Runtime(1);
- Function Runtime($mode=0){
- Static $s;
- IF(!$mode){
- $s=microtime();
- Return;
- }
- $e=microtime();
- $s=Explode(" ", $s);
- $e=Explode(" ", $e);
- Return Sprintf("%.2f ms",($e[1]+$e[0]-$s[1]-$s[0])*1000);
- }
|