ApiData();   //獲取接口訪問的數(shù)據(jù) //$_type&nb..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP app 喚起微信支付 獲取鏈接【項(xiàng)目實(shí)例】

發(fā)布時(shí)間:2020-07-18 11:43:02 來源:網(wǎng)絡(luò) 閱讀:24401 作者:pansw113 欄目:web開發(fā)
	public function weixin_params_data(){
		 $data  = $this->ApiData();   //獲取接口訪問的數(shù)據(jù)
		//$_type = $post_data['type'];
		
		if(!$data['out_trade_no']){
			systemmess('0','參數(shù)錯(cuò)誤');
		}
		
		$WxPayConfig = array(
				'APPID'=>'wxc123456789',
				'MCHID'=>'123456',
				'KEY'=>'KEY',
				'APPSECRET'=>'APPSECRET'
			
		);
		
		$out_trade_no = $data['out_trade_no'];  //訂單號(hào)



		
        //訂單名稱,必填
        $proName ='app微信支付';
        //付款金額,必填
         $total_amount = 1*100; //一分     *100
        //商品描述,可空
        $body = $oid_body;//trim($_POST['WIDbody']);
		$return_url = 'http://'.$_SERVER['HTTP_HOST'].''.U('Appreturn/notify_weixin');  // 異步鏈接


		$_data_pay['appid'] = $WxPayConfig['APPID']; //應(yīng)用ID
		$_data_pay['mch_id'] = $WxPayConfig['MCHID']; //商戶號(hào)
		$_data_pay['nonce_str'] = md5(rand(100000,999999)); //隨機(jī)字符串
		$_data_pay['sign_type'] = 'MD5'; //簽名類型
		$_data_pay['body'] = ''.$body; //商品描述
		$_data_pay['attach'] = $_type; //附加數(shù)據(jù)
		$_data_pay['out_trade_no'] = $out_trade_no; //商戶訂單號(hào)
		$_data_pay['fee_type'] = 'CNY'; //貨幣類型
		$_data_pay['total_fee'] = $total_amount; //總金額
		$_data_pay['spbill_create_ip'] = $data['ip']; //終端IP
		$_data_pay['notify_url'] = $return_url; //通知地址
		$_data_pay['trade_type'] = 'APP'; //交易類型
		
		$_data_pay['sign'] = $this->get_weixin_sign($_data_pay,$WxPayConfig['KEY']); //簽名
		
		
		$xml = "<xml>";
    	foreach ($_data_pay as $key=>$val)
    	{
    		if (is_numeric($val)){
    			$xml.="<".$key.">".$val."</".$key.">";
    		}else{
    			$xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
    		}
        }
        $xml.="</xml>";
		// $json['xml'] = $xml;
		
		$url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
		$ch = curl_init();
		//設(shè)置超時(shí)
		curl_setopt($ch, CURLOPT_TIMEOUT, 30);
		
		
		curl_setopt($ch,CURLOPT_URL, $url);
		curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,TRUE);
		curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,2);//嚴(yán)格校驗(yàn)
		//設(shè)置header
		curl_setopt($ch, CURLOPT_HEADER, FALSE);
		//要求結(jié)果為字符串且輸出到屏幕上
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
	
		//post提交方式
		curl_setopt($ch, CURLOPT_POST, TRUE);
		curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
		//運(yùn)行curl
		$data = curl_exec($ch);
		//返回結(jié)果
		if($data){
			curl_close($ch);
			// $json['data'] = $data;
			$_data = json_decode(json_encode(simplexml_load_string($data, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
			$prepay_id = $_data['prepay_id'];
			if(!$prepay_id){
				//json_echo(1,"系統(tǒng)錯(cuò)誤");exit;	
				$json['msg']='1';
				$json['state']='2';
				$json['_data_pay']=$_data_pay;
				$json['data']=$data;
				$json['error']=$_data['return_code'].$_data['return_msg'];
				echo json_encode($json);exit;
				
			}
		} else { 
			$error = curl_errno($ch);
			curl_close($ch);
			$json['error'] = $error;
			//json_echo(1,"ok",$json);exit;	
		}
		
		
		


		
		// $json_data['msg'] = '1';
		// $json_data['state'] = '1';
		$json_data['appid'] = $WxPayConfig['APPID'];
		$json_data['partnerid'] = $WxPayConfig['MCHID']; //商戶號(hào)
		$json_data['prepayid'] = $prepay_id;
		$json_data['package'] = 'Sign=WXPay';
		$json_data['noncestr'] = $_data_pay['nonce_str'];
		$json_data['timestamp'] = time();
		
		$json_data['sign'] = $this->get_weixin_sign($json_data,$WxPayConfig['KEY']);
		$_json['msg']= '1';
		$_json['state']= '1';
		$_json['data']= $json_data;
		echo json_encode($_json);exit;
	}
	
	
	// 微信app支付 sign
	private function get_weixin_sign($data,$key){
		ksort($data);
		$buff = "";
		foreach ($data as $k => $v){
			if($k != "sign" && $v != "" && !is_array($v)){
				$buff .= $k . "=" . $v . "&";
			}
		}
		$buff = trim($buff, "&") . "&key=".$key;
		
		$string = md5($buff);
		//簽名步驟四:所有字符轉(zhuǎn)為大寫
		$result = strtoupper($string);
		return $result;
		
	}


//異步通知地址
	public function notify_weixin(){
		$xml = $GLOBALS['HTTP_RAW_POST_DATA'];
		
		//將XML轉(zhuǎn)為array
        //禁止引用外部xml實(shí)體
        libxml_disable_entity_loader(true);
        $return_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);	
			M('log')->add(array('title'=>'微信','content'=>json_encode($return_data)));
		if($return_data['return_code'] === "SUCCESS" && $return_data['result_code'] === "SUCCESS"){
			$out_trade_no = $return_data['out_trade_no'];
			$type = substr($out_trade_no,0,1);
				//訂單操作
                        		
			//$this->edit_order_info($return_data['attach'],$return_data['out_trade_no'],$return_data['transaction_id'],$return_data['time_end'],($return_data['total_fee']/100),'wxpay',$return_data);
		}
	}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI