callmez\wechat\sdk\Wechat::getMedia PHP Method

getMedia() public method

下载媒体文件
public getMedia ( $mediaId ) : array | boolean
$mediaId 媒体文件id
return array | boolean
    public function getMedia($mediaId)
    {
        $result = $this->httpGet(self::WECHAT_MEDIA_URL . 'access_token=' . $this->getAccessToken(), ['media_id' => $mediaId]);
        return !isset($result['errcode']) ? $result : false;
    }
Wechat