微信退款通知XML数据处理,以及req_info的解密
程序员文章站
2022-05-15 23:45:21
微信官方退款结果通知文档第一步:处理post传过来的xml数据$key = '微信支付的密钥';//post传过来的数据,这里是测试demo$string = "SUCCESS <...
第一步:处理post传过来的xml数据
$key = '微信支付的密钥';
//post传过来的数据,这里是测试demo
$string = "<xml>
<return_code>SUCCESS</return_code>
<appid><![CDATA[wx9456sdf465sd5234]]></appid>
<mch_id><![CDATA[15654s65d01]]></mch_id>
<nonce_str><![CDATA[cb57c212199cb4b372194c51bcc7a8fd]]></nonce_str>
<req_info>dfg1d</req_info></xml>
";
$string = simplexml_load_string($string,'SimpleXMLElement',LIBXML_NOCDATA);
$arr = json_decode(json_encode($string),true);
var_dump($arr);
[
第二步:解密req_info里的数据1
$res = openssl_decrypt(base64_decode($string),'AES-256-ECB',md5($key),OPENSSL_RAW_DATA,'');
var_dump($res);
大功告成!!!
本文地址:https://blog.csdn.net/weixin_42595949/article/details/107173511
上一篇: 城市的一脚,你生活在哪里?
下一篇: nmap介绍