1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Created by PhpStorm.
- * User: admin
- * Date: 2019/11/7
- * Time: 13:52
- */
- namespace wx\offiaccount;
- use wx\Base;
- class Qrcode extends Base
- {
- /**
- * 生成二维码
- * @param $token
- * @param $data
- * @return mixed|null
- */
- public function create($token, $data)
- {
- $url = 'https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=' . $token;
- $rs = $this->curl($url, $data);
- return $rs;
- }
- /**
- * 长连接转短链接
- */
- public function lang2short($token, $data)
- {
- $url = 'https://api.weixin.qq.com/cgi-bin/shorturl?access_token=' . $token;
- $rs = $this->curl($url, $data);
- return $rs;
- }
- }
|