PHP函数进度条
我正在构建一些图像转换器,我运行的函数可能需要一段时间, 我想知道的是,php 中是否有一种构建方式可以用来显示函数的进度?该函数基于 For 循环(函数内部有几个 for 循环),所以我知道在许多循环中该函数将停止。 是否可以?
另一个问题是我想知道上传文件进度条是如何工作的,如果你有小例子或教程那就太好了, 谢谢,先生。
i'm building some image convertor and the function i run may can take a while ,
what i want to know , is if there a build in way in php that i can use to show the progress of the function? the function based on the For loop (inside the function there are several for loop ) so i know in many loops the function going to stop.
is it possible?
an other question is that i want to know how uploading files progress bar work , if you have small example or tutorial it will be great ,
thanks , Mor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,可以在执行脚本时使用
flush()
和ob_flush()
刷新输出缓冲Yes it is possible, to use
flush()
andob_flush()
to flush output buffering while executing script看看 http://pixomania.net/dev/php/php-progress-酒吧级
Check thie out http://pixomania.net/dev/php/php-progress-bar-class