status.php 207 B

123456789101112
  1. <?php
  2. return [
  3. // 请求成功
  4. 'success' => 200,
  5. // 未登录
  6. 'not_logged' => 401,
  7. // 没有权限访问
  8. 'not_permission' => 403,
  9. // 服务器内部错误
  10. 'error' => 500,
  11. ];