📜  测量 php 执行时间 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:38.224000             🧑  作者: Mango

代码示例1
$start = microtime(true);
while (...) {

}
$time_elapsed_secs = microtime(true) - $start;