在開發過程中,資料格式轉換是經常會遇到的問題。在PHP中,常用的兩種資料格式是JSON與XML。 JSON是一種輕量級的資料交換格式,易於閱讀和編寫,而XML是一種可以擴展的標記式語言,廣泛應用於Web資料傳輸和設定檔的儲存。
本文將介紹PHP中如何將JSON格式互轉成XML格式。
一、JSON轉XML
PHP提供了可用來將JSON資料轉換成XML格式的函數json_decode()。其語法如下:
mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )
其中,$json表示要轉換的JSON字串,$assoc表示是否將JSON物件轉換成關聯數組(預設為false),$depth表示最大遞歸深度(預設為512 ),$options表示轉換選項(預設為0)。
下面是一個將JSON數組轉換成XML的例子:
<?php // JSON数据 $json_data = '{ "students": [ { "name": "David", "age": 20, "score": { "English": 90, "Math": 85, "Chinese": 95 } }, { "name": "Tom", "age": 22, "score": { "English": 80, "Math": 75, "Chinese": 85 } } ] }'; // 将JSON数据转换成PHP数组 $php_data = json_decode($json_data, true); // 将PHP数组转换成XML格式 $xml_data = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><data></data>'); array_to_xml($php_data, $xml_data); // 输出XML格式数据 header('Content-type: text/xml'); echo $xml_data->asXML(); // 将数组转换成XML格式的函数 function array_to_xml($arr, &$xml) { foreach ($arr as $key => $value) { if (is_array($value)) { if (!is_numeric($key)) { $subnode = $xml->addChild("$key"); array_to_xml($value, $subnode); } else { array_to_xml($value, $xml); } } else { $xml->addChild("$key", htmlspecialchars("$value")); } } } ?>
上述程式碼先將JSON字串轉換成PHP數組,然後再使用遞迴函數將PHP數組轉換成XML格式。
輸出XML格式資料如下:
<?xml version="1.0" encoding="UTF-8"?> <data> <students> <0> <name>David</name> <age>20</age> <score> <English>90</English> <Math>85</Math> <Chinese>95</Chinese> </score> </0> <1> <name>Tom</name> <age>22</age> <score> <English>80</English> <Math>75</Math> <Chinese>85</Chinese> </score> </1> </students> </data>
二、XML轉JSON
要將XML格式轉換成JSON格式,則需要先將XML轉換成PHP數組,再使用json_encode()函數將PHP陣列轉換成JSON字串。以下是將XML轉換成JSON的例子:
children() as $element) { if (count($element->children()) == 0) { $arr[$element->getName()] = strval($element); } else { $arr[$element->getName()][] = xml_to_array($element); } } return $arr; } ?>
上述程式碼先將XML字串透過simplexml_load_string()函數轉換成SimpleXMLElement對象,再透過遞迴函數將SimpleXMLElement物件轉換成PHP陣列。最後使用json_encode()函數將PHP陣列轉換成JSON字串。
輸出JSON格式資料如下:
{ "students": [ { "name": "David", "age": "20", "score": { "English": "90", "Math": "85", "Chinese": "95" } }, { "name": "Tom", "age": "22", "score": { "English": "80", "Math": "75", "Chinese": "85" } } ] }
總結
PHP提供了方便的函數用於將JSON格式轉換成XML格式和將XML格式轉換成JSON格式。在開發過程中,根據實際需求選擇合適的資料格式進行儲存和交換,可以達到更好的資料傳輸和讀取效果。
以上是介紹PHP中的JSON與XML格式轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!