Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我PHP Error : 30711对问题所在没有任何解释。
PHP Error : 30711
如何查看错误消息?通常会显示错误消息,但不是为此。我正在尝试使用mail()发送电子邮件。
mail()
在 PHP 中(至少在 PHP 3.5 中),数字 30711 是E_ALL错误代码的幻数。
E_ALL
PHP 没有理由输出这个数字,或者你不需要知道它。
我的猜测是您的error_reporting设置是E_ALL,并且您正在运行的程序有一行如下所示:
error_reporting
print "PHP Error: ".error_reporting();
换句话说,这是程序员故意放在那里的一条消息,告诉他们错误设置是什么。可能它在代码的调试部分?我不知道。
鉴于此,我相当确定该mail()功能与问题无关。