摘要: /** * XML转化为数组 * * @author 何洋 2016-3-17 14:37:20 */ function xml_to_array($xml){ $reg = "/]*?>([\\x00-\\xFF]*?)/"; if(preg_match_all($reg, $xml, $matches)){ $count = count($matche... 阅读全文
posted @ 2016-04-11 15:28 phpsmall菜鸟 阅读(280) 评论(0) 推荐(0)