Error.php 341 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\controller;
  3. /**
  4. * @title :
  5. * @desc :
  6. * @Author : Rock
  7. * @Date : 2023-04-25 14:59:59
  8. */
  9. class Error
  10. {
  11. public function index($name,$arguments)
  12. {
  13. return res(2,"控制器不存在",$name);
  14. }
  15. public function __call($name,$arguments)
  16. {
  17. return res(2,"控制器不存在");
  18. }
  19. }