您好,登錄后才能下訂單哦!
這篇文章運(yùn)用了實(shí)例代碼展示php解析xml數(shù)據(jù)并轉(zhuǎn)換成數(shù)組的方法,代碼非常詳細(xì),可供感興趣的小伙伴們參考借鑒,希望對(duì)大家有所幫助。
php解析xml數(shù)據(jù)并轉(zhuǎn)換成數(shù)組。使用simplexml_load_string()轉(zhuǎn)xml對(duì)象,json_encode()把對(duì)象轉(zhuǎn)成json,json_decode()轉(zhuǎn)成數(shù)組。
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轉(zhuǎn)object $xml= json_encode($xml); //objecct轉(zhuǎn)json $xml=json_decode($xml,true); //json轉(zhuǎn)array var_dump($xml);
關(guān)于php解析xml數(shù)據(jù)并轉(zhuǎn)換成數(shù)組的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。