IYUUPlus/config/app.php
2022-10-03 11:03:11 +08:00

16 lines
494 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use app\Request;
return [
'debug' => env('APP_DEBUG', false),
'default_timezone' => 'Asia/Shanghai',
'error_reporting' => E_ALL,
'request_class' => Request::class,
'public_path' => base_path() . DIRECTORY_SEPARATOR . 'public',
'runtime_path' => base_path(false) . DIRECTORY_SEPARATOR . 'runtime',
'controller_suffix' => '',
//关闭控制器复用每个请求都会触发对应控制器的__construct()构造函数
'controller_reuse' => false,
];