欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

微信退款通知XML数据处理,以及req_info的解密

程序员文章站 2023-01-21 21:34:55
微信官方退款结果通知文档第一步:处理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);

微信退款通知XML数据处理,以及req_info的解密[

第二步:解密req_info里的数据1

$res = openssl_decrypt(base64_decode($string),'AES-256-ECB',md5($key),OPENSSL_RAW_DATA,'');
var_dump($res);

微信退款通知XML数据处理,以及req_info的解密
大功告成!!!

本文地址:https://blog.csdn.net/weixin_42595949/article/details/107173511