如何在 PHP 中进行 fsync 或 fdatasync?

发布于 2024-09-09 16:20:02 字数 113 浏览 3 评论 0 原文

PHP 缺乏任何特定的函数来 fsync 文件 AFAIK。然而,我确实感到有必要同步我从 PHP 附加到的日志文件。

是否有任何已知的本地 PHP 函数会导致 fsync?或者有什么解决方法吗?

PHP lacks any specific function to fsync on a file AFAIK. I do however feel the urge to fsync a logfile I am appending to from PHP.

Is there any native PHP function known to cause an fsync? Or any workaround?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

和我恋爱吧 2024-09-16 16:20:02

恐怕这是不可能的。源代码中对 fsync 的唯一引用是在常规文件系统流的 flush 操作的实现中,它只是明确表示它们不进行 fsync,仅调用 fflush

如果你确实需要这个,你必须在 PHP 扩展中完成。

I'm afraid it's not possible. The only reference to fsync in the sources is in the implementation of the flush operation for regular filesystem streams and it's just to explicitly say they're not fsyncing, only calling fflush.

If you really need this, you have to do it in a PHP extension.

岁吢 2024-09-16 16:20:02

从 PHP 8.1 开始,这些方法现在可以使用预期的名称。

As of PHP 8.1 these methods are now available with the expected names.

生活了然无味 2024-09-16 16:20:02

如果您正在处理常规文件,则使用 fclose 关闭它最有效可能会将您的更改提交到磁盘。为了确保日志消息到达磁盘,只需在每次写入日志时打开和关闭文件。

写入系统日志应立即发生并由操作系统处理。

If you're dealing with a regular file, closing it with fclose will most likely commit your changes to disk. To assure that log messages hit the disk, just open and close the file for each write to your log.

Writes to the system log should take place immediately and are handled by the OS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文