在我的网站(使用drupal运行)中,ob_flush功能需要很长时间(10到100秒之间)才能执行.我怎么知道为什么?什么可能导致这么长时间?
尝试这个:
原文链接:https://www.f2er.com/php/132224.htmlob_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;
它对我来说很快.