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.
我有一个需要 Yahoo SDK 的 PHP 脚本。当我包含以下内容时,在脚本完成之前我不会得到回显输出:
要求(“/root/yahoosdk/ysdk/examples/common.inc.php”);
我可以评论那条线,我会看到每次迭代中所有的回声都在它们应该发生的时候发生。
一切正常,但是输出必须保存在 RAM 中,直到脚本完成,迭代数千个帖子,所以这可能会出现问题。
使我抓狂!任何帮助表示赞赏!
山姆
查看/root/yahoosdk/ysdk/examples/common.inc.php中的代码
确保它没有启用输出缓冲,这会阻止任何输出,直到脚本完成。
见ob_start