您好,登錄后才能下訂單哦!
PHP中怎樣把JSON文件轉為XML格式?針對這個問題,今天小編總結這篇有關格式的文章,希望幫助更多正在學習PHP的同學。
首先獲取JSON文件中的字符;
$content = file_get_contents('./data.json');
然后使用函數“json_decode()”函數將字符串轉為數組;
$content = file_get_contents('./data.json'); $data = json_decode($content, true);
再將數組循環拼接成XML數據;
$content = file_get_contents('./data.json'); $data = json_decode($content, true); function xml_encode($data) { $string=""; foreach($data as $k => $v){ $string .= "<" . $k . ">"; //判斷是否是數組,或者,對像 if(is_array($v) || is_object($v)){ //是數組或者對像就的遞歸調用 $string .= xml_encode($v); }else{ //取得標簽數據 $string .=$v; } $string .= "</" . $k . ">"; } return $string; } $content = xml_encode($data);
最后將XML數據寫入文件中并將后綴名改為“xml”即可。
$content = file_get_contents('./data.json'); $data = json_decode($content, true); function xml_encode($data) { $string=""; foreach($data as $k => $v){ $string .= "<" . $k . ">"; //判斷是否是數組,或者,對像 if(is_array($v) || is_object($v)){ //是數組或者對像就的遞歸調用 $string .= xml_encode($v); }else{ //取得標簽數據 $string .=$v; } $string .= "</" . $k . ">"; } return $string; } $content = xml_encode($data); file_put_contents('./data.xml', $content);
看完上述內容,你們掌握將JSON文件轉為XML格式的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。