获取 PHP 命令行脚本中 STDOUT 重定向到的文件路径
我有一个从命令行运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能,至少不能使用
>>
,因为这样 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.