thinkphp 自定义错误页面

在访问无效的UI
thinkphp 自定义错误页面_第1张图片
这个效果不好,要改成自定义的

<?php
namespace app\controller;

class ErrorController
{
    public function __call($method,$args)
    {
        return 'error request!';
    }
}

之后就是提示
thinkphp 自定义错误页面_第2张图片

你可能感兴趣的:(php)