天天看點

PHP計算代碼執行消耗時間

microtime 計算微秒數

<?php
 
$start = microtime(true);
 # todo 用于計算時間的代碼
$end = microtime(true);
 
$time=$end-$start