📅  最后修改于: 2022-03-11 14:53:48.005000             🧑  作者: Mango
//place this before any script you want to calculate time
$time_start = microtime(true);
//sample script
for($i=0; $i<1000; $i++){
//do anything
}
$time_end = microtime(true);
$execution_time = ($time_end - $time_start);
echo 'Total Execution Time: '.($execution_time*1000).'Milliseconds';