【php】thinkphp6 如何展示所有报错信息?

使用tp6开发时,不提示具体错误,只返回 Internal Server Error,500 error

添加入下代码

    ini_set("display_errors","On");
    error_reporting(E_ALL);

可放到入口文件, /public/index.php

http;

$response = $http->run();

// 开启debug才展示
if(env('APP_DEBUG')){
    ini_set("display_errors","On");
    error_reporting(E_ALL);
}

$response->send();

$http->end($response);

《完》

你可能感兴趣的:(php,开发语言)