Mobile.class.php
775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* 常规的请求对应的code及解释
* @author xmg
* @version 0.1 2013.1.4
*
*/
class Config_Code_Mobile
{
/**
* 200000 操作成功. 任何成功操作都可以使用此代码
*
* @var array
*/
public static $success_opt = array
(
'code' => 200 ,
'message' => '操作成功',
);
/**
* 400000 操作登录. 任何成功操作都可以使用此代码
*
* @var array
*/
public static $fail_opt = array
(
'code' => 403 ,
'message' => '操作失败',
);
/**
* 400001 校验失败
*
* @var array
*/
public static $fail_validate = array
(
'code' => 401 ,
'message' => '超过了字数限制',
);
}