Mobile.class.php 775 Bytes
<?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' => '超过了字数限制',
    );
}