php错误和流明错误都显示错误输出

问题描述 投票:-4回答:1

如何在流明框架中解决此问题?

我同时得到PHP默认错误和流明框架异常。

这里我附上了两个文件的截图。输出和异常处理程序PHP文件。

Output of the exception or error

lumen exception/handle.php file

php exception-handling lumen-5.2
1个回答
1
投票

哦......你需要尝试以下任何一种方法:

方法1

假设你在apache PC上运行php 7.2 web服务器和Ubuntu。转到你的php.ini文件(/etc/php/7.2/apache2/php.ini),搜索display_errors并将其设置为Off

如果方法1没有为您修复它,请尝试方法2:

方法2

转到index.phppublic文件夹内的app并关闭display_errors,如下所示:

ini_set('display_errors', 0);   //Set this before $app->run();
© www.soinside.com 2019 - 2024. All rights reserved.