You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
return [
|
|
// 请求成功
|
|
'success' => 200,
|
|
// 未登录
|
|
'not_logged' => 401,
|
|
// 没有权限访问
|
|
'not_permission' => 403,
|
|
// 服务器内部错误
|
|
'error' => 500,
|
|
];
|
|
|