您好,登錄后才能下訂單哦!
這篇文章主要介紹php怎么將xml轉(zhuǎn)為array數(shù)組,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
方法:首先用simplexml_load_string()將XML字符串轉(zhuǎn)換為SimpleXMLElement對象;然后用json_encode()將該對象轉(zhuǎn)換為JSON數(shù)據(jù);最后用json_decode()將JSON數(shù)據(jù)轉(zhuǎn)換為數(shù)組即可。
php將xml轉(zhuǎn)換為array數(shù)
1、函數(shù):
/* @desc:xml轉(zhuǎn)數(shù)組 @param data xml字符串 @return arr 解析出的數(shù)組 */ function xmltoarray($data){ $obj = simplexml_load_string($data, 'SimpleXMLElement', LIBXML_NOCDATA); $json = json_encode($obj); $arr = json_decode($json, true); return $arr; }
simplexml_load_string() 函數(shù)轉(zhuǎn)換形式良好的 XML 字符串為 SimpleXMLElement 對象。
json_encode() 用于對變量進行 JSON 編碼,該函數(shù)如果執(zhí)行成功返回 JSON 數(shù)據(jù),否則返回 FALSE 。
json_decode() 函數(shù)用于對 JSON 格式的字符串進行解碼,并轉(zhuǎn)換為 PHP 變量(對象或數(shù)組)。
json_decode ($json_string [,$assoc = false [, $depth = 512 [, $options = 0 ]]])
參數(shù)
json_string: 待解碼的 JSON 字符串,必須是 UTF-8 編碼數(shù)據(jù)
assoc: 當該參數(shù)為 TRUE 時,將返回數(shù)組,F(xiàn)ALSE 時返回對象。
depth: 整數(shù)類型的參數(shù),它指定遞歸深度
options: 二進制掩碼,目前只支持 JSON_BIGINT_AS_STRING 。
2、測試:
a. 代碼:
<?php $string = <<<XML <?xml version='1.0'?> <document> <title>Forty What?</title> <from>Joe</from> <to>Jane</to> <body> I know that's the answer -- but what's the question? </body> </document> XML; $arr = xmltoarray($string); var_dump($arr);
b. 輸出:
array(4) { ["title"]=> string(11) "Forty What?" ["from"]=> string(3) "Joe" ["to"]=> string(4) "Jane" ["body"]=> string(57) " I know that's the answer -- but what's the question? " }
以上是“php怎么將xml轉(zhuǎn)為array數(shù)組”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。