您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

api.users.router.php-DEL 167B

123456789
  1. <?php
  2. $this->any('/user', function ($request, $response, $args) {
  3. global $user;
  4. $response = $response->withJson($user->getList());
  5. return $response;
  6. });