微信支付成功了,但是发现微信支付成功后竟然没有执行回调方法,现在自己尝试了以下几种方法反复下单测试都没有执行到回调方法,所以想求助大神给点方法,谢谢了。
首先我确保notify_url的路径【jsapi.php文件】官方的demo文件改过来的。
$result = $input->SetNotify_url("--路径保密--/Wxpay/example/notify.php");
2017-10-02 17:33:36 begin notify
2017-10-02 17:33:36 end notify
2017-10-02 17:33:36 return notify
2017-10-02 17:33:37 begin notify
2017-10-02 17:33:37 end notify
2017-10-02 17:33:37 return notify
我的notify.php文件是微信官方demo下载下来的,然后只是增加了自己的修改订单状态的语法而已,其他的都和官方一样。
<?php
ini_set('date.timezone','Asia/Shanghai');
error_reporting(E_ERROR);
require_once "../lib/WxPay.Api.php";
require_once '../lib/WxPay.Notify.php';
require_once 'log.php';
//初始化日志
$logHandler= new CLogFileHandler("../logs/".date('Y-m-d').'.log');
$log = Log::Init($logHandler, 15);
class PayNotifyCallBack extends WxPayNotify
{
//查询订单
public function Queryorder($transaction_id)
{
$input = new WxPayOrderQuery();
$input->SetTransaction_id($transaction_id);
$result = WxPayApi::orderQuery($input);
Log::DEBUG("query:" . json_encode($result));
if(array_key_exists("return_code", $result)
&& array_key_exists("result_code", $result)
&& $result["return_code"] == "SUCCESS"
&& $result["result_code"] == "SUCCESS")
{
return true;
}
return false;
}
//重写回调处理函数
public function NotifyProcess($data, &$msg)
{
Log::DEBUG("call back:" . json_encode($data));
$notfiyOutput = array();
if(!array_key_exists("transaction_id", $data)){
$msg = "输入参数不正确";
return false;
}
//查询订单,判断订单真实性
if(!$this->Queryorder($data["transaction_id"])){
$msg = "订单查询失败";
return false;
}
//订单成功的地方
//根据out_trade_no修改订单状态
---- 在这里修改订单状态的----
return true;
}
//我加的一个curl执行方法
public function curlSend($url,$data=''){
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //不进行证书验证
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //不进行主机头验证
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //结果不直接输出在屏幕上
$data && curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$data ? curl_setopt($ch, CURLOPT_POST, true):curl_setopt($ch, CURLOPT_POST, false); //发送的方式
curl_setopt($ch, CURLOPT_URL, $url); //发送的地址
$result =curl_exec($ch);
curl_close($ch);
$info =json_decode($result,true);
return $info ;
}
}
Log::DEBUG("begin notify");
$notify = new PayNotifyCallBack();
$notify->Handle(false);
哔哔one
潇潇雨雨