選択できるのは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. });