This commit is contained in:
parent
8cd5072bf3
commit
2f44059289
|
|
@ -15,7 +15,7 @@ return [
|
|||
// +----------------------------------------------------------------------
|
||||
|
||||
// 应用调试模式
|
||||
'app_debug' => false,
|
||||
'app_debug' => true,
|
||||
// 应用Trace
|
||||
'app_trace' => false,
|
||||
// 应用模式状态
|
||||
|
|
|
|||
|
|
@ -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 '你好';
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue