This commit is contained in:
2025-11-21 01:42:54 +08:00
parent ff026c6f32
commit f89196c73c
1953 changed files with 9 additions and 15246 deletions
@@ -0,0 +1,30 @@
<?php
namespace plugin\admin\app\controller;
use support\Request;
class DevController extends Base
{
/**
* 无需登录的方法
* @var string[]
*/
protected $noNeedLogin = [''];
/**
* 不需要鉴权的方法
* @var string[]
*/
protected $noNeedAuth = ['*'];
public function index()
{
if(request()->method() == 'POST'){
return '<pre>'.var_export(Request()->post(),true).'</pre>';
}
return view('dev/index',[
]);
}
}