SetTransaction_id($transaction_id); $input->SetOut_trade_no($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 $result; } //return false; return $result; } //重写回调处理函数 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; } return true; } } Log::DEBUG("begin notify"); $orderid = $_GET['orderid']; $notify = new PayNotifyCallBack(); //echo json_encode($notify->Queryorder($orderid)); $notify->Handle(false);