当前位置:   article > 正文

微信支付重复回调_微信支付回调如何处理重复demo

微信支付回调如何处理重复demo

这个问题困扰了几天,问了很多人,网上也查了很多,用了很多个网上说的可以的方法都没能成功,最后总算成功了,所以分享一下,希望能对人有所帮助。
直接上代码

<?php
//所有输出必须为success,且输出必须使用echo方式且需要exit停止后续程序否则重复回调,return只返回值不能输出值

ini_set('date.timezone', 'Asia/Shanghai');

$xml = file_get_contents('php://input');
$replyxml = '<xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml>’; 
//判断xml内容
if (!$xml) {
    file_put_contents();
    //通知微信
    echo  $replyxml;
    exit();
}
libxml_disable_entity_loader(true); //禁止引用外部xml实体 可有可无
//转换xml为数组
$value = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
if ($value['return_code'] != 'SUCCESS') {
    file_put_contents(日志文件);
    //通知微信
    echo  $replyxml;
    exit();
}
//验证签名
ksort($value);
$buff = "";
foreach ($value as $k => $v) {
    if ($k != "sign" && $v != "" && !is_array($v)) {
        $buff .= $k . "=" . $v . "&";
    }
}
$buff = trim($buff, "&");
$string = $buff . "&key=你的秘钥";//测试
//签名步骤三:MD5加密
$string = md5($string);
//签名步骤四:所有字符转为大写
$result = strtoupper($string);
if ($result != $value['sign']) {
    file_put_contents(日志文件);
    通知微信
    echo  $replyxml;
    exit();
} else {
    file_put_contents(日志文件);
    if ($value['result_code'] == "SUCCESS" && $value['return_code'] == "SUCCESS") {
        //处理数据逻辑
   
    }
    //通知微信
    echo  $replyxml;
    exit();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/132319
推荐阅读
相关标签
  

闽ICP备14008679号