您当前的位置: 首页 > 

苗先生的PHP记录

暂无认证

  • 0浏览

    0关注

    190博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

微信支付xml 转数组

苗先生的PHP记录 发布时间:2020-10-12 10:51:18 ,浏览量:0

/**
     * 将xml转化数组
     * @param $xml
     * @return mixed
     */
    public function FromXml($xml)
    {
        if (!$xml){
            throw new WxpayException('xml数据异常');
        }
        //将xml转换数组
        //禁止引入外部xml实体
        libxml_disable_entity_loader(true);
        $this->values = json_decode(json_encode(simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA)),true);
        return $this->values;
    }

demo: zhifu(tp6)

vendor/tophtink / framework / src / think / response / xml.php

调用代码 : app/index/controller / pay.php (notify 方法)

关注
打赏
1665468453
查看更多评论
立即登录/注册

微信扫码登录

0.0392s