微信沙盒Key获取

2023-05-16

<?php
// php 获取沙盒sandbox_signkey
header("Content-type: text/xml");
include_once "./application/vendor/wechat/pay/WxMp.Config.php";
$config = new \WxMpConfig();

//include_once "./application/vendor/wechat/pay/WxPay.Config.php";
//$config = new \WxPayConfig();

$mch_id = $config->GetMerchantId();
$nonce_str = getNonceStr();
$key = $config->GetKey();
$sign = strtoupper(md5( "mch_id=".$mch_id."&nonce_str=".$nonce_str."&key=".$key ));

$xml = "<xml><mch_id>{$mch_id}</mch_id><nonce_str>{$nonce_str}</nonce_str><sign>{$sign}</sign></xml>";

$url = "https://api.mch.weixin.qq.com/sandboxnew/pay/getsignkey";

$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS, $xml);
$response = curl_exec($ch);
if(curl_errno($ch)){
    exit('Curl error: ' . curl_error($ch));
}
curl_close($ch);
echo $response;

function getNonceStr($length = 32)
{
    $chars = "abcdefghijklmnopqrstuvwxyz0123456789";
    $str ="";
    for ( $i = 0; $i < $length; $i++ )  {
        $str .= substr($chars, mt_rand(0, strlen($chars)-1), 1);
    }
    return $str;
}

 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

微信沙盒Key获取 的相关文章

随机推荐