mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
小程序二维码,增加其他参数传入
#I5OUBO
This commit is contained in:
parent
7dfe73b646
commit
966fd08bf9
@ -66,14 +66,15 @@ class Qrcode extends BasicWeChat
|
|||||||
* @param array $line_color auto_color 为 false 时生效
|
* @param array $line_color auto_color 为 false 时生效
|
||||||
* @param boolean $is_hyaline 是否需要透明底色
|
* @param boolean $is_hyaline 是否需要透明底色
|
||||||
* @param null|string $outType 输出类型
|
* @param null|string $outType 输出类型
|
||||||
|
* @param array $extra 其他参数
|
||||||
* @return array|string
|
* @return array|string
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
* @throws \WeChat\Exceptions\LocalCacheException
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function createMiniScene($scene, $page, $width = 430, $auto_color = false, $line_color = ["r" => "0", "g" => "0", "b" => "0"], $is_hyaline = true, $outType = null)
|
public function createMiniScene($scene, $page, $width = 430, $auto_color = false, $line_color = ["r" => "0", "g" => "0", "b" => "0"], $is_hyaline = true, $outType = null, array $extra = [])
|
||||||
{
|
{
|
||||||
$url = 'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN';
|
$url = 'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN';
|
||||||
$data = ['scene' => $scene, 'width' => $width, 'auto_color' => $auto_color, 'page' => $page, 'line_color' => $line_color, 'is_hyaline' => $is_hyaline];
|
$data = array_merge(['scene' => $scene, 'width' => $width, 'auto_color' => $auto_color, 'page' => $page, 'line_color' => $line_color, 'is_hyaline' => $is_hyaline], $extra);
|
||||||
$this->registerApi($url, __FUNCTION__, func_get_args());
|
$this->registerApi($url, __FUNCTION__, func_get_args());
|
||||||
$result = Tools::post($url, Tools::arr2json($data));
|
$result = Tools::post($url, Tools::arr2json($data));
|
||||||
if (is_array($json = json_decode($result, true))) {
|
if (is_array($json = json_decode($result, true))) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user