微信手机支付,回调不访问问题
2020-07-18 本文已影响0人
Stonesy
就是php7的一个特性,不能用$GLOBALS['HTTP_RAW_POST_DATA']接收数据。。。接收不到回调数据的。。只能用 $xml = file_get_contents("php://input");
不能用$_post
用下面:
$testxml = file_get_contents("php://input");
$jsonxml = json_encode(simplexml_load_string($testxml, 'SimpleXMLElement', LIBXML_NOCDATA));
$ret = json_decode($jsonxml, true);//转成数组,