microtime() 函数返回当前 Unix 时间戳和微秒数。
如果带个 true 参数, 返回的将是一个浮点类型
round() 取出小数点后 3 位
$t1 = microtime(true); // ... 执行代码 ... $t2 = microtime(true); echo '耗时'.round($t2-$t1,3).'秒';
microtime() 函数返回当前 Unix 时间戳和微秒数。
如果带个 true 参数, 返回的将是一个浮点类型
round() 取出小数点后 3 位
$t1 = microtime(true); // ... 执行代码 ... $t2 = microtime(true); echo '耗时'.round($t2-$t1,3).'秒';