标准错误流的名称是什么(Apache+php)
我想使用 file_put_contents 将一些文本从 PHP 放入 Apache 错误日志(监听 stderror 错误流)。
我缺少该流的名称,以及是否必须在其前面添加 :// 或类似的内容。
谢谢
I want to put some text into the Apache error log (listens on the stderror error stream) from PHP using file_put_contents.
I am missing the name of this stream, and whether I have to put :// or something similar before it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 http://php.net/manual/en/wrappers.php.php
php://stdin
、php://stdout
和php://stderr
允许直接访问相应的输入或输出流PHP 进程的。建议您仅使用常量STDIN
、STDOUT
和STDERR
,而不是使用这些包装器手动打开流。From http://php.net/manual/en/wrappers.php.php
php://stdin
,php://stdout
andphp://stderr
allow direct access to the corresponding input or output stream of the PHP process. It is recommended that you simply use the constantsSTDIN
,STDOUT
andSTDERR
instead of manually opening streams using these wrappers.请参阅http://php.net/manual/en/wrappers.php.php
但您可能想使用
error_log
< /a> 函数代替。See http://php.net/manual/en/wrappers.php.php
But you might want to use the
error_log
function instead.