callmez\wechat\sdk\components\BaseWechat::httpGet PHP Méthode

httpGet() public méthode

Http Get 请求
public httpGet ( $url, array $options = [] ) : mixed
$url
$options array
Résultat mixed
    public function httpGet($url, array $options = [])
    {
        Yii::info(['url' => $url, 'options' => $options], __METHOD__);
        return $this->parseHttpRequest(function ($url) {
            return $this->http($url);
        }, $this->httpBuildQuery($url, $options));
    }