如何在 php 中使用 file_put_contents() 检测完成情况?
在 PHP 中,我将使用 file_put_contents($filename, $data);
编写(创建)文件 没关系,但我想检测进程的完成事件。
目前,页面显示加载状态。
这是目前我知道它是否完成的方式。
我想用代码来检测。
In PHP, i will write (create) the file using file_put_contents($filename, $data);
It is ok, but i want to detect the finish event of process.
Currently, the page is showing loading status.
This is currently the way i can know it is finish or not.
I want to detect with the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个阻塞的 I/O 调用,因此它在函数调用返回时完成。返回值是写入的字节数(成功时)。
This is a blocking, I/O call, so it finishes when the function call returns. The return value is the number of bytes written (upon success).
它将一切都搁置直到结束
所以您可以使用类似的东西来确定它何时完成写入文件。
It puts everything on hold until it's over
So you could use something like this to determine when it has finished writing the file.
首先从远程位置检索
Content-Length
标头。您可以使用 get_headers 来执行此操作。就像这样:Retrieve the
Content-Length
header from the remote location first. You can use get_headers to do that. Like so: