php解析xml轉陣列
php解析xml資料並轉換成陣列。使用simplexml_load_string()轉xml物件,json_encode()把物件轉成json,json_decode()轉成陣列。
simplexml_load_file() 載入xml url
simplexml_load_string() 載入xml 字串
<?php $xml = '<?xml version="1.0" encoding="utf-8"?> <res> <name>test</name> <age>10</age> <sex>man</sex> </res>'; $xml =simplexml_load_string($xml); //xml轉object $xml= json_encode($xml); //objecct轉json $xml=json_decode($xml,true); //json轉array var_dump($xml);以上就是php解析xml轉陣列的方法的詳細內容,更多請關注TW511.COM其它相關文章!