我有一个小脚本,我用来测试
PHP mail(),如下所示:
<?PHP error_reporting(E_ALL); ini_set("display_errors",1); mail('x@x.com','test','test') or die('could not send') ; echo "Mail Sent"; ?>
当我运行这个脚本时,我根本没有输出.我没有得到错误,我没有得到任何回应,我查看来源,没有.
我尝试了很多不同的变化,如果我在上面的代码中取出邮件功能,它将工作正常.
这是一个Windows托管服务器,所以我无法访问PHP.ini或任何东西
根据PHP
Runtime Configuration指南:
原文链接:https://www.f2er.com/php/134797.htmlNote: Although
display_errors
may be
set at runtime (withini_set()
),it
won’t have any affect if the script
has fatal errors. This is because the
desired runtime action does not get
executed.
您的代码似乎有语法错误(‘test,缺少一个结束撇号).因此,您的程序遇到致命错误.要显示致命错误的唯一方法(编辑:错误日志之外)是在PHP.ini文件中设置display_errors = 1.