12345678910111213141516171819 |
- <?php
- namespace app\admin\controller;
- /**
- * @title :
- * @desc :
- * @Author : Rock
- * @Date : 2023-04-25 14:59:59
- */
- class Error
- {
- public function index($name,$arguments)
- {
- return res(2,"控制器不存在",$name);
- }
- public function __call($name,$arguments)
- {
- return res(2,"控制器不存在");
- }
- }
|