lokielse / omnipay-wechatpay

(微信支付)WeChatPay driver for the Omnipay PHP payment processing library
MIT License
317 stars 103 forks source link

xml2array 有问题 #74

Closed firefly0621 closed 6 years ago

firefly0621 commented 6 years ago

helper类中xml2array函数始终返回[];

lokielse commented 6 years ago

xml2array的入参xml是啥?

firefly0621 commented 6 years ago
public static function xml2array($xml)
    {
        $data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true) || [];

        if (! is_array($data)) {
            $data = [];
        }

        return $data;
    }

这$data要么为真要么为假吧

lokielse commented 6 years ago

好的,感谢提供信息,稍候更新。

lokielse commented 6 years ago

已在v3.0.7中更新。