美文网首页
微信手机支付,回调不访问问题

微信手机支付,回调不访问问题

作者: Stonesy | 来源:发表于2020-07-18 16:08 被阅读0次
    就是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);//转成数组,
    

    相关文章

      网友评论

          本文标题:微信手机支付,回调不访问问题

          本文链接:https://www.haomeiwen.com/subject/zbhfkktx.html