如何在 php 中使用 file_put_contents() 检测完成情况?

发布于 2024-11-09 06:58:29 字数 162 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

热情消退 2024-11-16 06:58:29

这是一个阻塞的 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).

森罗 2024-11-16 06:58:29

它将一切都搁置直到结束

所以您可以使用类似的东西来确定它何时完成写入文件。

echo "The file's contents are now being written, please wait.";
file_put_contents($filename, $data);
echo "The file's contents have been written.";

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.

echo "The file's contents are now being written, please wait.";
file_put_contents($filename, $data);
echo "The file's contents have been written.";
预谋 2024-11-16 06:58:29

首先从远程位置检索 Content-Length 标头。您可以使用 get_headers 来执行此操作。就像这样:

$headers = get_headers($url, 1);
echo "To download: " . $headers['Content-Length'] . " bytes.<br />";

Retrieve the Content-Length header from the remote location first. You can use get_headers to do that. Like so:

$headers = get_headers($url, 1);
echo "To download: " . $headers['Content-Length'] . " bytes.<br />";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文