Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一些 PHP 进程需要很长时间才能完成,比如几个小时。
所以用户不能等待加载 php 文件。请帮助找到我如何在后台运行 php 的方式。尽管在我们关闭该 php.ini 之后,它应该在后台处理(可能是托管后台或其他东西)。
你有没有试过 microtime()..?计时代码执行所需的时间
如果您也想精确地计算它的时间来加载页面或运行代码块,那么这个小技巧非常有用。它利用了 PHP 的 microtime() 函数。
$start = microtime(true); //Do stuff in here sleep(1); //Stop doing stuff $end = microtime(true); $time = $end - $start; echo $time;