获取 PHP 命令行脚本中 STDOUT 重定向到的文件路径

发布于 2024-12-21 15:30:23 字数 348 浏览 0 评论 0原文

我有一个从命令行运行的 PHP 脚本,如下所示: php test.php >>输出.log。 我的output.log 文件的大小已增加,我想实现某种轮换(在满足特定条件时归档并截断它)。 如果我不知道脚本代码中文件的路径(因为它是在调用时设置的),我该怎么做?

我发现你可以用Python来完成它,如下所述: 有没有办法找出Python中stdout重定向到的文件的名称

I have a PHP script run from the command line like this: php test.php >> output.log.
My output.log file has increased in size and I would like to implement some sort of rotation (archiving and truncating it when a certain condition is met).
How can I do this, if I don't know the path to the file from within the code of the script, because it's set when it's called?

I see you can do it in Python as explained here: Is there a way to find out the name of the file stdout is redirected to in Python

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

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

发布评论

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

评论(1

烟花肆意 2024-12-28 15:30:23

你不能,至少不能使用 >>,因为这样 PHP 就不知道它的输出去了哪里。

您必须在 PHP 本身中实现它。

You can't, at least not using >>, because that way PHP does not know where its output goes.

You'd have to implement it in PHP itself.

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