php开发微信小程序支付

php开发微信小程序支付


public function pay(){
//获取openid
if($_GET[‘code’]){ //用code获取openid
c o d e = code= code=_GET[‘code’];
$WX_APPID =C(‘WX_APPID’);//appid
$WX_SECRET = C(‘WX_SECRET’);//AppSecret
u r l = " h t t p s : / / a p i . w e i x i n . q q . c o m / s n s / j s c o d e 2 s e s s i o n ? a p p i d = " . url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . url="https://api.weixin.qq.com/sns/jscode2session?appid=".WX_APPID. “&secret=” . KaTeX parse error: Expected 'EOF', got '&' at position 13: WX_SECRET. "&̲js_code=" .code. “&grant_type=authorization_code”;
i n f o s = j s o n d e c o d e ( f i l e g e t c o n t e n t s ( infos = json_decode(file_get_contents( infos=jsondecode(filegetcontents(url));
$openid = KaTeX parse error: Expected 'EOF', got '}' at position 24: …penid; }̲ if(_GET[‘uid’]){
w h e r e [ ′ i d ′ ] = where['id']= where[id]=_GET[‘uid’];
}
o i d = oid= oid=_GET[‘oid’];
//$fee = $_GET[‘price’];
$fee = 0.01; //举例支付0.01
$time = time();
o u t t r a d e n o = out_trade_no= outtradeno=this->order_number($openid);
p a r a m = a r r a y ( ′ a p p i d ′ = > ′ ′ , / / 小 程 序 i d ′ m c h i d ′ = > ′ ′ , / / 商 户 i d C ( ′ W X I D ′ ) ′ s p b i l l c r e a t e i p ′ = > param = array( 'appid' => '',//小程序id 'mch_id'=>'',//商户 idC('WX_ID') 'spbill_create_ip'=> param=array(appid=>,//idmchid=>,//idC(WXID)spbillcreateip=>_SERVER[‘REMOTE_ADDR’],//终端ip
‘notify_url’=>‘ http://bzl.isoft.mobi/index.php/Home/Pay/notify’, //回调通知地址
‘nonce_str’=> t h i s − > c r e a t e N o n c e s t r ( ) , / / 随 机 字 符 串 ′ o u t t r a d e n o ′ = > this->createNoncestr(),//随机字符串 'out_trade_no'=> this>createNoncestr(),//outtradeno=>out_trade_no,//商户订单编号
‘total_fee’=> f e e ∗ 100 , / / 总 金 额 ′ o p e n i d ′ = > fee*100, //总金额 'openid'=> fee100,//openid=>openid,//用户openid
‘trade_type’=>‘JSAPI’,//交易类型
‘body’ =>‘XXX消费’, //商品信息
);
a a [ ′ i d ′ ] = aa['id']= aa[id]=oid;
d a [ ′ o u t t r a d e n o ′ ] = da['out_trade_no']= da[outtradeno]=out_trade_no;
o r d e r = M ( ′ o r d e r ′ ) − > w h e r e ( order =M('order')->where( order=M(order)>where(aa)->save($da); //给订单里生成订单编号
//通过签名算法计算得出的签名值,详见签名生成算法
$param[‘sign’] = t h i s − > g e t S i g n ( this->getSign( this>getSign(param);
//var_dump($param);die;
//将数组内容转为xml格式,向微信发出请求
$xmlData = t h i s − > a r r a y T o X m l ( this->arrayToXml( this>arrayToXml(param);
$xml_result = t h i s − > p o s t X m l C u r l ( this->postXmlCurl( this>postXmlCurl(xmlData,‘ https://api.mch.weixin.qq.com/pay/unifiedorder’,60);
// var_dump( x m l r e s u l t , xml_result, xmlresult,xmlData);die;
$array = t h i s − > x m l T o A r r a y ( this->xmlToArray( this>xmlToArray(xml_result);
if($array[‘return_code’] == ‘SUCCESS’ && $array[‘result_code’] == ‘SUCCESS’){
$time = time();

        $key=C('WX_KEY');
        $tmp = [];//临时数组用于签名
        $tmp['appId'] = ' ';
        $tmp['nonceStr'] = $array['nonce_str'];
        $tmp['package'] = 'prepay_id='.$array['prepay_id'];
        $tmp['signType'] = 'MD5';
        $tmp['timeStamp'] = (string)$time;
        $result['nonceStr'] = $array['nonce_str'];//随机字符串
        $result['signType'] = 'MD5';//签名算法,暂支持 MD5
        $result['package'] = 'prepay_id='.$array['prepay_id'];//统一下单接口返回的 prepay_id 参数值,提交格式如:prepay_id=*
        $result['paySign'] = $this->getSign($tmp);
        $result['timeStamp'] =(string)$time;
        $result['appId'] = $array['appid'];
 
 
    }else{
        $result['return_code'] = $array['return_code'];
        $result['return_msg'] = $array['return_msg'];
    }

    echo json_encode($result,JSON_UNESCAPED_UNICODE);

}

//生成订单号
private function order_number($openid){
    //date('Ymd',time()).time().rand(10,99);//18位
    return md5($openid.time().rand(10,99));//32位
}

/*
* 对要发送到微信统一下单接口的数据进行签名
*/
protected function getSign($Obj){
    foreach ($Obj as $k => $v){
        $param[$k] = $v;
    }
    //签名步骤一:按字典序排序参数
    ksort($param);
    $String = $this->formatBizQueryParaMap($param, false);
    //签名步骤二:在string后加入KEY
    $wx_key=C('WX_KEY'); //申请支付后有给予一个商户账号和密码,登陆后自己设置的key
    $String = $String."&key=".$wx_key;
    //签名步骤三:MD5加密
    $String = md5($String);
    //签名步骤四:所有字符转为大写
    $result_ = strtoupper($String);
   // var_dump($result_);
    return $result_;
}
/*
 *排序并格式化参数方法,签名时需要使用
 */
protected function formatBizQueryParaMap($paraMap, $urlencode){
    $buff = "";
    ksort($paraMap);
    foreach ($paraMap as $k => $v){
        if($urlencode){
            $v = urlencode($v);
        }
        //$buff .= strtolower($k) . "=" . $v . "&";
        $buff .= $k . "=" . $v . "&";
    }
    $reqPar = "";
    if (strlen($buff) > 0){
        $reqPar = substr($buff, 0, strlen($buff)-1);
    }
    return $reqPar;
}

/*
 * 生成随机字符串方法
 */
protected function createNoncestr($length = 32 ){
    $chars = "abcdefghijklmnopqrstuvwxyz0123456789";
    $str ="";
    for ( $i = 0; $i < $length; $i++ ) {
        $str.= substr($chars, mt_rand(0, strlen($chars)-1), 1);
    }
    return $str;
}
//数组转字符串方法
protected function arrayToXml($arr){
    $xml = "<xml>";
    foreach ($arr as $key=>$val)
    {
        if (is_numeric($val)){
            $xml.="<".$key.">".$val."</".$key.">";
        }else{
            $xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
        }
    }
    $xml.="</xml>";
    return $xml;
}

//将xml字符串转换为数组
protected static function xmlToArray($xml){
    $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
    return $array_data;
}

//发送xml请求方法
private static function postXmlCurl($xml, $url, $second = 30) {
    $ch = curl_init();
    //设置超时
    curl_setopt($ch, CURLOPT_TIMEOUT, $second);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); //严格校验
    //设置header
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    //要求结果为字符串且输出到屏幕上
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //post提交方式
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
    curl_setopt($ch, CURLOPT_TIMEOUT, 40);
    set_time_limit(0);
    //运行curl
    $data = curl_exec($ch);
    //返回结果
    if ($data) {
        curl_close($ch);
        return $data;
    }else {
        $error = curl_errno($ch);
        curl_close($ch);
        throw new WxPayException("curl出错,错误码:$error");
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值