/**
* 将xml转为array
* @param string $xml
* @throws WxPayException
*/
public function FromXml($xml)
{
if(!$xml){
throw new WxPayException("xml数据异常!");
}
//将XML转为array
//禁止引用外部xml实体
libxml_disable_entity_loader(true);
$this->values = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
return $this->values;
}
相关文章
- 01-25深度学习图像配准 Image Registration: From SIFT to Deep Learning
- 01-25sql中的for xml path() 实现字符串拼接
- 01-25关于xml中自动提示功能的设置
- 01-25XML转换为对象操作类详解
- 01-25Get A Transportation Network From OSMFile
- 01-255 -- Hibernate的基本用法 --4 2 hibernate.properties文件与hibernate.cfg.xml文件
- 01-25from bs4 import BeautifulSoup 引入需要安装的文件和步骤
- 01-25在beautifulsoup安装的前提下,报如下错误cannot import name 'Beautifulsoup4' from 'bs4'的解决办法
- 01-25【Android】Error obtaining UI hierarchyError while obtaining UI hierarchy XML file: com.android...
- 01-25如何更改MyEclipse中XML文件的字体?