微信扫码支付电脑版完整版含回调PHP带支付成功跳转功能

一,微信扫码支付代码

<?php
//微信扫码		
header('Content-type:text/html; Charset=utf-8');

//查询自己数据库的中订单的状态 具体实现自己根据自己系统修改
function pay_status() {
		$TradeNo = $_POST['TradeNo'];
		$infos  = $this->account_db->get_one(array('status'=>'succ','trade_sn'=>$TradeNo));
		if($infos['status']=='succ') {
			exit('1');
		} else {
			exit('0');
		}
	}
	
	
$payAmount = 1;          //付款金额,单位:元
$outTradeNo = '20188888000'; //自定义
$mchid = '149826';          //微信支付商户号 PartnerID 通过微信支付商户资料审核后邮件发送
$appid = 'wx111ed';  //公众号APPID 通过微信支付商户资料审核后邮件发送
$apiKey = '725bffc7b6';   //https://pay.weixin.qq.com 帐户设置-安全设置-API安全-API密钥-设置API密钥
$wxPay = new WxpayService_PC($mchid,$appid,$apiKey);
$orderName = 'PC_wxpay';    //订单标题
$returnUrl = 'http://域名/index.php?m=pay&c=deposit';     //付款成功后的同步回调地址
$notifyUrl = 'http://域名/notify_wxpay.php';     //付款成功后的异步回调地址
$payTime = time();      //付款时间
$arr = $wxPay->createJsBizPackage($payAmount,$outTradeNo,$orderName,$notifyUrl,$payTime);

//生成二维码
$url = 'http://pan.baidu.com/share/qrcode?w=300&h=300&url='.$arr['code_url'];

echo "<div style='text-align:center'><br/><br/><br/>请用微信扫码支付<br/><a style='color:blue'href=".$returnUrl.">点击查看付款结果</a><br/><img src='{$url}' style='width:300px;'></div>";
	?>		
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" /> 
<title>微信支付(注意自己下载jquery并引入)</title>
</head>
<body>
<script type="text/javascript" src="/statics/css/img/jquery-1.11.3.min.js"></script>


<script language="javascript">
function select2(){
	//alert(19);
 url = "index.php?m=pay&c=deposit&a=pay_status";
 $.ajax({
  type: 'POST',
  url: url,
  data: {
      TradeNo:"<?php echo $outTradeNo;?>",
    },
	dataType:"json",
 success:function(data){
	 if(data=='1'){
		 location.href="index.php?m=pay&c=deposit";
	 }else{
		
		 setTimeout("select2()",2000);
	 }
   
   }

});
}
setTimeout("select2()",2000);
</script>
</body>
</html>
<?php	
	
//以下为电脑版扫码微信支付的类,不需要修改.

class WxpayService_PC
{
    protected $mchid;
    protected $appid;
    protected $apiKey;
    public function __construct($mchid, $appid, $key)
    {
        $this->mchid = $mchid;
        $this->appid = $appid;
        $this->apiKey = $key;
    }
    /**
     * 发起订单
     * @param float $totalFee 收款总费用 单位元
     * @param string $outTradeNo 唯一的订单号
     * @param string $orderName 订单名称
     * @param string $notifyUrl 支付结果通知url 不要有问号
     * @param string $timestamp 订单发起时间
     * @return array
     */
    public function createJsBizPackage($totalFee, $outTradeNo, $orderName, $notifyUrl, $timestamp)
    {
        $config = array(
            'mch_id' => $this->mchid,
            'appid' => $this->appid,
            'key' => $this->apiKey,
        );
        //$orderName = iconv('GBK','UTF-8',$orderName);
        $unified = array(
            'appid' => $config['appid'],
            'attach' => 'pay',             //商家数据包,原样返回,如果填写中文,请注意转换为utf-8
            'body' => $orderName,
            'mch_id' => $config['mch_id'],
            'nonce_str' => self::createNonceStr(),
            'notify_url' => $notifyUrl,
            'out_trade_no' => $outTradeNo,
            'spbill_create_ip' => '127.0.0.1',
            'total_fee' => intval($totalFee * 100),       //单位 转为分
            'trade_type' => 'NATIVE',
        );
        $unified['sign'] = self::getSign($unified, $config['key']);
        $responseXml = self::curlPost('https://api.mch.weixin.qq.com/pay/unifiedorder', self::arrayToXml($unified));
        $unifiedOrder = simplexml_load_string($responseXml, 'SimpleXMLElement', LIBXML_NOCDATA);
        if ($unifiedOrder === false) {
            die('parse xml error');
        }
        if ($unifiedOrder->return_code != 'SUCCESS') {
            die($unifiedOrder->return_msg);
        }
        if ($unifiedOrder->result_code != 'SUCCESS') {
            die($unifiedOrder->err_code);
        }
        $codeUrl = (array)($unifiedOrder->code_url);
        if(!$codeUrl[0]) exit('get code_url error');
        $arr = array(
            "appId" => $config['appid'],
            "timeStamp" => $timestamp,
            "nonceStr" => self::createNonceStr(),
            "package" => "prepay_id=" . $unifiedOrder->prepay_id,
            "signType" => 'MD5',
            "code_url" => $codeUrl[0],
        );
        $arr['paySign'] = self::getSign($arr, $config['key']);
        return $arr;
    }
    public function notify()
    {
        $config = array(
            'mch_id' => $this->mchid,
            'appid' => $this->appid,
            'key' => $this->apiKey,
        );
        $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
        $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
        if ($postObj === false) {
            die('parse xml error');
        }
        if ($postObj->return_code != 'SUCCESS') {
            die($postObj->return_msg);
        }
        if ($postObj->result_code != 'SUCCESS') {
            die($postObj->err_code);
        }
        $arr = (array)$postObj;
        unset($arr['sign']);
        if (self::getSign($arr, $config['key']) == $postObj->sign) {
            echo '<xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml>';
            return $postObj;
        }
    }
    /**
     * curl get
     *
     * @param string $url
     * @param array $options
     * @return mixed
     */
    public static function curlGet($url = '', $options = array())
    {
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_TIMEOUT, 30);
        if (!empty($options)) {
            curl_setopt_array($ch, $options);
        }
        //https请求 不验证证书和host
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        $data = curl_exec($ch);
        curl_close($ch);
        return $data;
    }
    public static function curlPost($url = '', $postData = '', $options = array())
    {
        if (is_array($postData)) {
            $postData = http_build_query($postData);
        }
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
        curl_setopt($ch, CURLOPT_TIMEOUT, 30); //设置cURL允许执行的最长秒数
        if (!empty($options)) {
            curl_setopt_array($ch, $options);
        }
        //https请求 不验证证书和host
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        $data = curl_exec($ch);
        curl_close($ch);
        return $data;
    }
    public static function createNonceStr($length = 16)
    {
        $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
        $str = '';
        for ($i = 0; $i < $length; $i++) {
            $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
        }
        return $str;
    }
    public static 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;
    }
    /**
     * 获取签名
     */
    public static function getSign($params, $key)
    {
        ksort($params, SORT_STRING);
        $unSignParaString = self::formatQueryParaMap($params, false);
        $signStr = strtoupper(md5($unSignParaString . "&key=" . $key));
        return $signStr;
    }
    protected static function formatQueryParaMap($paraMap, $urlEncode = false)
    {
        $buff = "";
        ksort($paraMap);
        foreach ($paraMap as $k => $v) {
            if (null != $v && "null" != $v) {
                if ($urlEncode) {
                    $v = urlencode($v);
                }
                $buff .= $k . "=" . $v . "&";
            }
        }
        $reqPar = '';
        if (strlen($buff) > 0) {
            $reqPar = substr($buff, 0, strlen($buff) - 1);
        }
        return $reqPar;
    }
}

二,支付成功后.微信异步回调页面为notify_wxpay.php,在根目录中,可根据情况修改

<?php
	
header('Content-type:text/html; Charset=utf-8');
define('PHPS_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
$mchid = '149';          //微信支付商户号 PartnerID 通过微信支付商户资料审核后邮件发送
$appid = 'wxd664ed';  //公众号APPID 通过微信支付商户资料审核后邮件发送
$apiKey = '725bffc47';   //https://pay.weixin.qq.com 帐户设置-安全设置-API安全-API密钥-设置API密钥
$wxPay = new WxpayService_PC2($mchid,$appid,$apiKey);
$result = $wxPay->notify();
if($result){
	
	
	  if(array_key_exists("return_code", $result)&& array_key_exists("result_code", $result)&& $result["return_code"] == "SUCCESS"&& $result["result_code"] == "SUCCESS"){
   file_put_contents('1.txt',1);//$result['transaction_id']
			//ini_set('display_errors',1);            //错误信息  
//ini_set('display_startup_errors',1);    //php启动错误信息  
//error_reporting(-1);                    //打印出所有的 错误信息
		$mysql_user=include(PHPS_PATH.'/caches/configs/database.php');
		$username=$mysql_user['default']['username'];
		$password=$mysql_user['default']['password'];
		$tablepre=$mysql_user['default']['tablepre'];
		$database=$mysql_user['default']['database'];
$out_trade_no=$result['out_trade_no'];
//$out_trade_no='2018022401013737544';
		$con = mysqli_connect($mysql_user['default']['hostname'],$username,$password);

mysqli_select_db($con,$database);	
$sql = ' SELECT * FROM '.$tablepre."pay_account where trade_sn='".$out_trade_no."'";

$result2=mysqli_query($con,$sql);

$orderinfo=mysqli_fetch_array($result2);;

$uid=$orderinfo['userid'];
$sql2 = ' SELECT * FROM '.$tablepre."member where userid=".$uid;
	$result1=mysqli_query($con,$sql2);
$userinfo=mysqli_fetch_array($result1);;



		if($orderinfo){
			
			if($orderinfo['status']=='succ'){
			//file_put_contents('31.txt',1);
				return true;
				 mysqli_close($con);
				 exit();
			}else{
				
					// if($orderinfo['money']== $_POST['total_fee'] ){
						 
			$money = $orderinfo['money'];
			$amount = $userinfo['amount'] + $money;
		$sql3 = ' update  '.$tablepre."member set amount= ".$amount."  where userid=".$uid;
		$result3=mysqli_query($con,$sql3);



	$sql4 = ' update  '.$tablepre."pay_account set status= 'succ'  where userid=".$uid ." and trade_sn='".$out_trade_no."'";
		$result4=mysqli_query($con,$sql4);

//file_put_contents('1.txt',$result4);
			
				return true;
				 mysqli_close($con);
				 exit(); 
						 
				//	 }
			
		
			}
			
		}

	
            return true;
      }
		
		
    //完成你的逻辑
    //例如连接数据库,获取付款金额$result['cash_fee'],获取订单号$result['out_trade_no'],修改数据库中的订单状态等;

}else{
    echo 'pay error';
}


class WxpayService_PC2
{
    protected $mchid;
    protected $appid;
    protected $apiKey;
    public function __construct($mchid, $appid, $key)
    {
        $this->mchid = $mchid;
        $this->appid = $appid;
        $this->apiKey = $key;
    }
    public function notify()
    {
        $config = array(
            'mch_id' => $this->mchid,
            'appid' => $this->appid,
            'key' => $this->apiKey,
        );
        $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
        $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
        if ($postObj === false) {
            die('parse xml error');
        }
        if ($postObj->return_code != 'SUCCESS') {
            die($postObj->return_msg);
        }
        if ($postObj->result_code != 'SUCCESS') {
            die($postObj->err_code);
        }
        $arr = (array)$postObj;
        unset($arr['sign']);
        if (self::getSign($arr, $config['key']) == $postObj->sign) {
            echo '<xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml>';
            return $arr;
        }
    }
    /**
     * 获取签名
     */
    public static function getSign($params, $key)
    {
        ksort($params, SORT_STRING);
        $unSignParaString = self::formatQueryParaMap($params, false);
        $signStr = strtoupper(md5($unSignParaString . "&key=" . $key));
        return $signStr;
    }
    protected static function formatQueryParaMap($paraMap, $urlEncode = false)
    {
        $buff = "";
        ksort($paraMap);
        foreach ($paraMap as $k => $v) {
            if (null != $v && "null" != $v) {
                if ($urlEncode) {
                    $v = urlencode($v);
                }
                $buff .= $k . "=" . $v . "&";
            }
        }
        $reqPar = '';
        if (strlen($buff) > 0) {
            $reqPar = substr($buff, 0, strlen($buff) - 1);
        }
        return $reqPar;
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值