yangweijie/think-ignition

ThinkPHP 的 ignition

v1.0.2 2024-03-12 09:32 UTC

This package is auto-updated.

Last update: 2024-09-12 10:44:41 UTC


README

ThinkPHP 的 ignition

安装

composer require yangweijie/think-ignition

修改 app 下的 provider

<?php
use think\ignition\ExceptionHandle;
use app\Request;

// 容器Provider定义文件
return [
    'think\Request'          => Request::class,
    'think\exception\Handle' => ExceptionHandle::class,
];

将 app.show_error_msg 设置为 true

// 显示错误信息
'show_error_msg'   => true,