出于测试目的,我在 PHP 5.4 中有以下脚本:
define(START_TIME_CUSTOM, microtime(true));
function onEndTimeCompute() {
$timeTaken = microtime(true) - START_TIME_CUSTOM;
echo "Completed In: ".number_format($timeTaken, 4)." Seconds\n";
}
register_shutdown_function('onEndTimeCompute');
echo "Just before exit";
exit;
echo "Just after exit";
(脚本取自此处:https ://serverfault.com/questions/192211/iis-logging-write-to-log-file-more-often)执行时间为:0.00002 秒。
我在本地网络服务器 IIS7.5 上运行。
我也在使用 Chrome。
加载页面需要 1 秒。关于为什么需要整整一秒钟的任何想法?我希望它能够立即响应。
问候,保罗