PFinal\Wechat\Service\UserService::get PHP Method

get() public static method

public static get ( $openid, $lang = 'zh_CN' )
    public static function get($openid, $lang = 'zh_CN')
    {
        $url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid=%s&lang=%s';
        $url = sprintf($url, $openid, $lang);
        return parent::request($url);
    }
UserService