This commit is contained in:
tsf 2024-02-29 18:20:53 +08:00
parent 8cd5072bf3
commit 2f44059289
2 changed files with 16 additions and 1 deletions

View File

@ -15,7 +15,7 @@ return [
// +----------------------------------------------------------------------
// 应用调试模式
'app_debug' => false,
'app_debug' => true,
// 应用Trace
'app_trace' => false,
// 应用模式状态

View File

@ -0,0 +1,15 @@
<?php
namespace app\test\controller;
use think\Controller;
use think\Db;
use app\bj\controller\Common;
use think\Log;
use \think\Validate;
class Text extends Controller{
public function demo(){
echo '你好';
}
}