php – ob_flush需要很长时间才能执行

前端之家收集整理的这篇文章主要介绍了php – ob_flush需要很长时间才能执行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的网站(使用drupal运行)中,ob_flush功能需要很长时间(10到100秒之间)才能执行.我怎么知道为什么?什么可能导致这么长时间?
尝试这个:
ob_start();
//Your code to generate the output
$result = ob_get_contents(); //save the contents of output buffer to a string
ob_end_clean();
echo $result;

它对我来说很快.

原文链接:https://www.f2er.com/php/132224.html

猜你在找的PHP相关文章