在程式開始的地方加上
[php]
$mtime = explode(" ", microtime());
$sTime = $mtime[1] + $mtime[0]; // 開始時間
[/php]
結束的地方加上
[php]
$mtime = explode(" ", microtime());
$eTime = $mtime[1] + $mtime[0]; // 結束時間
$allTime = ($eTime – $sTime); // 執行時間
[/php]
大型網站架構..net 架構師.rabbitMQ.redis.行動開發.APP開發教學.PHP Laravel開發..net core C# 開發.架構師之路.Delphi開發.資料庫程式.進銷存.餐飲POS系統
在程式開始的地方加上
[php]
$mtime = explode(" ", microtime());
$sTime = $mtime[1] + $mtime[0]; // 開始時間
[/php]
結束的地方加上
[php]
$mtime = explode(" ", microtime());
$eTime = $mtime[1] + $mtime[0]; // 結束時間
$allTime = ($eTime – $sTime); // 執行時間
[/php]