如何在 PHP 中进行 fsync 或 fdatasync?
PHP 缺乏任何特定的函数来 fsync 文件 AFAIK。然而,我确实感到有必要同步我从 PHP 附加到的日志文件。
是否有任何已知的本地 PHP 函数会导致 fsync?或者有什么解决方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
恐怕这是不可能的。源代码中对
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 theflush
operation for regular filesystem streams and it's just to explicitly say they're not fsyncing, only callingfflush
.If you really need this, you have to do it in a PHP extension.
从 PHP 8.1 开始,这些方法现在可以使用预期的名称。
As of PHP 8.1 these methods are now available with the expected names.
如果您正在处理常规文件,则使用 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.