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.
我有代码,我想运行它,这需要几分钟,所以我有一个加载窗口,加载完成后会显示结果并隐藏窗口。我想将所有结果缓存在一个单独的文件中,然后重定向到该文件。我使用 ob_start,但是我不想缓存加载窗口的代码。那么我可以在加载页面代码之前打开另一个ob start,然后使用ob_end_clean将其删除,然后仍然在脚本末尾获取其余内容吗?
是的:关于 php 中 ob 缓冲的文档清楚地说明了缓冲区可以堆叠。