Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

54 lignes
1.3 KiB

  1. <?php
  2. ini_set('date.timezone','Asia/Shanghai');
  3. error_reporting(E_ERROR);
  4. require_once "../lib/WxPay.Api.php";
  5. require_once '../lib/WxPay.Notify.php';
  6. require_once 'log.php';
  7. //初始化日志
  8. $logHandler= new CLogFileHandler("../logs/".date('Y-m-d').'.log');
  9. $log = Log::Init($logHandler, 15);
  10. class PayNotifyCallBack extends WxPayNotify
  11. {
  12. //查询订单
  13. public function Queryorder($transaction_id)
  14. {
  15. $input = new WxPayOrderQuery();
  16. $input->SetTransaction_id($transaction_id);
  17. $result = WxPayApi::orderQuery($input);
  18. Log::DEBUG("query:" . json_encode($result));
  19. if(array_key_exists("return_code", $result)
  20. && array_key_exists("result_code", $result)
  21. && $result["return_code"] == "SUCCESS"
  22. && $result["result_code"] == "SUCCESS")
  23. {
  24. return true;
  25. }
  26. return false;
  27. }
  28. //重写回调处理函数
  29. public function NotifyProcess($data, &$msg)
  30. {
  31. Log::DEBUG("call back:" . json_encode($data));
  32. $notfiyOutput = array();
  33. if(!array_key_exists("transaction_id", $data)){
  34. $msg = "输入参数不正确";
  35. return false;
  36. }
  37. //查询订单,判断订单真实性
  38. if(!$this->Queryorder($data["transaction_id"])){
  39. $msg = "订单查询失败";
  40. return false;
  41. }
  42. return true;
  43. }
  44. }
  45. Log::DEBUG("begin notify");
  46. $notify = new PayNotifyCallBack();
  47. $notify->Handle(false);