微信小程序生成帶參數的小程序二維碼

官方提供生成小程序碼的兩種方式:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/qr-code.htmlhtml

https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.htmljson

服務端生成小程序碼小程序

//小程序碼
public function getWxcode()
{
    $ACCESS_TOKEN = $this->getWxAccessToken();
    $url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" . $ACCESS_TOKEN['access_token'];
    $post_data =
        array(
            'page' => 'pages/my/my', //掃碼跳轉頁面
            'scene' => input('invite_code') //用戶邀請碼
        );
    $post_data = json_encode($post_data);
    $data = $this->send_post($url, $post_data);
    $result = $this->data_uri($data, 'image/png');
    return '<image src='.$result.'></image>';
    //return $result;
}

private function getWxAccessToken()
{
    $appid = '******';
    $appsecret = '*******';
    $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $appsecret;
    $access_token = $this->makeRequest($url);
    $access_token = json_decode($access_token['result'], true);
    return $access_token;

}

/**
 * 發起http請求
 * @param string $url 訪問路徑
 * @param array $params 參數,該數組多於1個,表示爲POST
 * @param int $expire 請求超時時間
 * @param array $extend 請求僞造包頭參數
 * @param string $hostIp HOST的地址
 * @return array    返回的爲一個請求狀態,一個內容
 */
private function makeRequest($url, $params = array(), $expire = 0, $extend = array(), $hostIp = '')
{
    if (empty($url)) {
        return array('code' => '100');
    }

    $_curl = curl_init();
    $_header = array(
        'Accept-Language: zh-CN',
        'Connection: Keep-Alive',
        'Cache-Control: no-cache'
    );
    // 方便直接訪問要設置host的地址
    if (!empty($hostIp)) {
        $urlInfo = parse_url($url);
        if (empty($urlInfo['host'])) {
            $urlInfo['host'] = substr(DOMAIN, 7, -1);
            $url = "http://{$hostIp}{$url}";
        } else {
            $url = str_replace($urlInfo['host'], $hostIp, $url);
        }
        $_header[] = "Host: {$urlInfo['host']}";
    }

    // 只要第二個參數傳了值以後,就是POST的
    if (!empty($params)) {
        curl_setopt($_curl, CURLOPT_POSTFIELDS, http_build_query($params));
        curl_setopt($_curl, CURLOPT_POST, true);
    }

    if (substr($url, 0, 8) == 'https://') {
        curl_setopt($_curl, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($_curl, CURLOPT_SSL_VERIFYHOST, FALSE);
    }
    curl_setopt($_curl, CURLOPT_URL, $url);
    curl_setopt($_curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($_curl, CURLOPT_USERAGENT, 'API PHP CURL');
    curl_setopt($_curl, CURLOPT_HTTPHEADER, $_header);

    if ($expire > 0) {
        curl_setopt($_curl, CURLOPT_TIMEOUT, $expire); // 處理超時時間
        curl_setopt($_curl, CURLOPT_CONNECTTIMEOUT, $expire); // 創建鏈接超時時間
    }

    // 額外的配置
    if (!empty($extend)) {
        curl_setopt_array($_curl, $extend);
    }

    $result['result'] = curl_exec($_curl);
    $result['code'] = curl_getinfo($_curl, CURLINFO_HTTP_CODE);
    $result['info'] = curl_getinfo($_curl);
    if ($result['result'] === false) {
        $result['result'] = curl_error($_curl);
        $result['code'] = -curl_errno($_curl);
    }

    curl_close($_curl);
    return $result;
}

/**
 * 消息推送http
 * @param $url
 * @param $post_data
 * @return bool|string
 */
private function send_post($url, $post_data)
{
    $options = array(
        'http' => array(
            'method' => 'POST',
            'header' => 'Content-type:application/json',
            //header 須要設置爲 JSON
            'content' => $post_data,
            'timeout' => 60
            //超時時間
        )
    );
    $context = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    return $result;
}

//二進制轉圖片image/png
private function data_uri($contents, $mime)
{
    $base64 = base64_encode($contents);
    return ('data:' . $mime . ';base64,' . $base64);
}
相關文章
相關標籤/搜索