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

uploadArticles() public method

图文消息上传(高级群发接口)
public uploadArticles ( array $articles ) : array | boolean
$articles array ~~~ $articles = [ [ 'thumb_media_id' => 'qI6_Ze_6PtV7svjolgs-rN6stStuHIjs9_DidOHaj0Q-mwvBelOXCFZiq2OsIU-p', 'author' => 'xxx', 'title' => 'Happy Day', 'content_source_url' => 'www.qq.com', 'content' => 'content', 'digest' => 'digest', 'show_cover_pic' => '1' ] ... ]; ~~~
return array | boolean
    public function uploadArticles(array $articles)
    {
        $result = $this->httpRaw(self::WECHAT_ARTICLES_UPLOAD_URL . 'access_token=' . $this->getAccessToken(), ['articles' => $articles]);
        return isset($result['media_id']) ? $result : false;
    }
Wechat