脚本运行时 PHP 输出消息
例如,我正在循环遍历一个大文件,在计数器达到 1000 个已解析的字符串后,我需要回显消息,这 1000 个字符串已被解析并计算总体已完成字符串的百分比。
是否可以用输出缓冲区制作类似的东西?
For example i'm looping through a big file, and after counter reaches 1000 parsed strings i need to echo message, that 1000 string have been parsed and calculate % of overall completed strings.
Is it possible to make something like that with output buffer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看一下 flush()。不过,您的浏览器是否会呈现不完整的页面,或者等待其完成加载,完全取决于实现......
Take a look at flush(). Whether or not your browser will render the incomplete page, or wait till it finishes loading is entirely implementation-dependent, though...
让您的脚本将进度数据写入服务器上的文本文件中。现在,借助 Ajax 对网页进行编程,以在特定的时间间隔向该文件发送请求。获取数据并计算百分比并修改页面的 HTML。
Make your script to write the progress data in a text file on the server. Now program your webpage with help of Ajax to send request to that file in particular intervals of time. Get the data and calculate the percentage and modify the HTML of your page.
一种可能是使用另一个脚本来输出进度,并让客户端以设定的时间间隔轮询当前进度,并且仅在整个过程完成后才要求完整的输出。
One possiblity is to use another script to output the progress, and have the client poll it in set intervals for current progress, and only ask for the complete output after the whole process is complete.