1.ecshop增加pc扫描二维码微信支付功能代码
ecshop增加pc扫描二维码微信支付功能代码
ecshop开发网站,微信如果没有手机版,支付又想通过微信支付,微信openhd 源码可以加入pc二维码扫描微信支付功能
使用PHP QR Code生成二维码,支付下载,微信iapp快猫源码在商品支付页面加入 include 'phpqrcode/phpqrcode.php'; $pay_url ='/weixin/weixin.php?支付ygbook采集源码6.14order_id='.$order['order_sn']; QRcode::png($pay_url, 'images/image.png', 'L', 8); echo 'img src="images/image.png" /'; 生成一个指向微信支付的手机连接二维码,手机扫描进入
打开申请到的微信微信支付代码,在上面加入weixin.php define('IN_ECS',支付 true); require('../includes/init.php'); require('../includes/lib_order.php'); $order_id = isset($_GET['order_id']) ? intval($_GET['order_id']) : 0; $order = order_info(0,$order_id); 获取订单信息
手机打开页面调用代码 html head meta /weixin/js_api_call.php'; //=======证书路径设置===================================== //证书路径,注意应该填写绝对路径 const SSLCERT_PATH = '/weixin/WxPayPubHelper/cacert/apiclient_cert.pem'; const SSLKEY_PATH = '/weixin/WxPayPubHelper/cacert/apiclient_key.pem'; //=======异步通知url设置=================================== //异步通知url,商户根据实际开发过程设定 const NOTIFY_URL = '/weixin/notify_url.php'; //=======curl超时设置=================================== //本例程通过curl使用HTTP POST方法,微信此处可修改其超时时间,支付默认为秒 const CURL_TIMEOUT = ; } ?微信 根据申请的信息填写
找到notify_url.php文件 上面添加 define('IN_ECS', true); require('../includes/init.php'); require('../includes/lib_payment.php'); 调用订单信息
notify_url.php添加支付后修改订单状态 if($notify-checkSign() == TRUE) { if ($notify-data["return_code"] == "FAIL") { //此处应该更新一下订单状态,商户自行增删操作 //$log_-log_result($log_name,支付"通信出错:\n".$xml."\n"); } elseif($notify-data["result_code"] == "FAIL"){ //此处应该更新一下订单状态,商户自行增删操作 //$log_-log_result($log_name,微信摩尔庄园游戏源码"业务出错:\n".$xml."\n"); } else{ //此处应该更新一下订单状态,商户自行增删操作 //$log_-log_result($log_name,支付"支付成功:\n".$xml."\n"); $order = $notify-getData(); $log_id=get_order_id_by_sn($order["out_trade_no"]); order_paid($log_id); } //商户自行增加处理流程, //例如:更新订单状态 //例如:数据库操作 //例如:推送支付完成信息 }
更多安全信息和详细信息就不列举了