PHP CLI System_Daemon 和 error_reporting 选项被忽略?
我正在使用 System_Daemon for PHP 制作一个守护进程。 我无法关闭默认的 php error_reporting。
我已经尝试过,
<?php
error_reporting(0);
set_ini('display_errors','off');
?>
但当我从控制台执行脚本时,警告/通知仍然显示。 有什么想法为什么会发生这种情况或者我缺少什么吗?可能是 System_Daemon 中的某些设置? :)
I'm making a daemon with System_Daemon for PHP.
I can't get the default php error_reporting off.
I've tried
<?php
error_reporting(0);
set_ini('display_errors','off');
?>
but the warnings/notices are still showing when I execute the script from the console.
Any ideas why this is happening or what I'm missing ? Probably it's some setting in System_Daemon ? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是ini_set不是set_ini
看这里 http://php.net/manual/en /function.ini-set.php 你必须设置 o 来隐藏通知/警告。
It is ini_set not set_ini
Look at here http://php.net/manual/en/function.ini-set.php you have to set o to hide notice/warnings.