PHP CLI System_Daemon 和 error_reporting 选项被忽略?

发布于 2024-10-17 17:03:18 字数 276 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

瞳孔里扚悲伤 2024-10-24 17:03:18

是ini_set不是set_ini

ini_set('display_errors',0);

看这里 http://php.net/manual/en /function.ini-set.php 你必须设置 o 来隐藏通知/警告。

It is ini_set not set_ini

ini_set('display_errors',0);

Look at here http://php.net/manual/en/function.ini-set.php you have to set o to hide notice/warnings.

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