PHP PC端微信扫码支付【模式二】详细教程-附带源码(转) (8)

微信支付demo 订单查询页面

<?php header("Access-Control-Allow-Origin:*"); ini_set(\'date.timezone\',\'Asia/Shanghai\'); error_reporting(E_ERROR); require_once "../lib/WxPay.Api.php"; require_once \'log.php\'; //初始化日志 $logHandler= new CLogFileHandler("./logs/".date(\'Y-m-d\').\'.log\'); $log = Log::Init($logHandler, 15); function printf_info($data) { foreach($data as $key=>$value){ echo "<font color=http://www.likecs.com/\'#f00;\'>$key</font> : $value <br/>"; } } if(isset($_REQUEST["transaction_id"]) && $_REQUEST["transaction_id"] != ""){ $transaction_id = $_REQUEST["transaction_id"]; $input = new WxPayOrderQuery(); $input->SetTransaction_id($transaction_id); //printf_info(WxPayApi::orderQuery($input)); $result=WxPayApi::orderQuery($input); echo $result[\'trade_state\']; exit(); } if(isset($_REQUEST["out_trade_no"]) && $_REQUEST["out_trade_no"] != ""){ $out_trade_no = $_REQUEST["out_trade_no"]; $input = new WxPayOrderQuery(); $input->SetOut_trade_no($out_trade_no); //printf_info(WxPayApi::orderQuery($input)); $result=WxPayApi::orderQuery($input); $status[\'code\'] = $result[\'trade_state\']; $status[\'openid\'] = $result[\'openid\']; $status[\'total_fee\'] = $result[\'total_fee\']; $status[\'transaction_id\'] = $result[\'transaction_id\']; $status[\'time\'] = $result[\'time_end\']; //print_r($result); print_r(json_encode($status)); exit(); } ?> 写的太差,请见谅;遇到问题了

Wishes everybody to be happy everyday!
ok,bye!撸主要给客户继续写东西了!~否则明天揭不开锅了!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzpfxp.html