微信公众平台开发(150)——从新浪云SAE上传图片到图文消息
Posted txw1958
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信公众平台开发(150)——从新浪云SAE上传图片到图文消息相关的知识,希望对你有一定的参考价值。
从新浪云SAE上传图片到图文消息,只能用于图文消息中,
没有个数限制
if (!empty($_FILES[‘qrcode‘][‘name‘])) $filename = time().".jpg"; file_put_contents(SAE_TMP_PATH."/".$filename, file_get_contents($_FILES[‘qrcode‘][‘tmp_name‘])); Vendor(‘Weixin.wxyhq_class‘); $weixin = new \weixin(); $data2 = array("media" => "@".SAE_TMP_PATH.$filename); //////// $result2 = $weixin->upload_image_media_raw($data2); if (isset($result2[‘url‘])) $data[‘picture‘] = $result2[‘url‘]; $member->add($data); $this->success(‘添加成功!‘,‘member‘); else $this->error(‘qrcode 失败‘); else $this->error(‘qrcode 没有‘); $data = array("media" => "@".SAE_TMP_PATH.$filename); $result2 = $weixin->upload_image_media_raw($data); var_dump($result2);
以上是关于微信公众平台开发(150)——从新浪云SAE上传图片到图文消息的主要内容,如果未能解决你的问题,请参考以下文章