在 PHP 中轉換 XML 到 JSON
Minahil Noor
2021年2月25日
2021年1月4日
本文將介紹在 PHP 中把 XML 字串轉換為 JSON 的方法。
在 PHP 中使用 simplexml_load_string()
和 json_encode()
函式把一個 XML 字串轉換為 JSON
我們將使用兩個函式在 PHP 中把 XML 字串轉換為 JSON,因為沒有專門的函式可以直接轉換。這兩個函式是 simplexml_load_string()
和 json_encode()
。使用這些函式將 XML 字串轉換為 JSON 的正確語法如下。
simplexml_load_string($data, $class_name, $options, $ns, $is_prefix);
simplexml_load_string()
函式接受五個引數。它的詳細引數如下。
變數 | 說明 | |
---|---|---|
$data |
強制 | 格式正確的 XML 字串。 |
$class_name |
可選 | 我們使用這個可選的引數,這樣 simplexml_load_string() 將返回一個指定類的物件。這個類應該擴充套件 SimpleXMLElement 類。 |
options |
可選 | 我們還可以使用 options 引數來指定額外的 Libxml 引數。 |
ns |
可選 | 名稱空間字首或 URI。 |
$is_prefix |
可選 | 如果 $ns 是字首,則設定為 true ,如果是 URI,則設定為 false 。其預設值為 false 。 |
該函式返回類 SimpleXMLElement
的物件,其中包含 XML 字串中的資料,如果失敗則返回 False
。
json_encode($value, $flags, $depth);
json_encode()
函式有三個引數。其引數的詳細情況如下。
變數 | 說明 | |
---|---|---|
$value |
強制 | 正在編碼的值。 |
$flags |
可選 | 由 JSON_FORCE_OBJECT 、JSON_HEX_QUOT 、JSON_HEX_TAG 、JSON_HEX_AMP 、JSON_HEX_APOS 、JSON_INVALID_UTF8_IGNORE 、JSON_INVALID_UTF8_SUBSTITUTE 、JSON_NUMERIC_CHECK 組成的位遮蔽。JSON_PARTIAL_OUTPUT_ON_ERROR 、JSON_PRESERVE_ZERO_FRACTION 、JSON_PRETTY_PRINT 、JSON_UNESCAPED_LINE_TERMINATORS 、JSON_UNESCAPED_SLASHES 、JSON_UNESCAPED_UNICODE 、JSON_THROW_ON_ERROR 。 |
$depth |
可選 | 最大深度。應大於零。 |
該函式返回 JSON 值。下面的程式顯示了我們在 PHP 中使用 simplexml_load_string()
和 json_encode()
函式將 XML 字串轉換為 JSON 的方法。
<?php
$xml_string = <<<XML
<?xml version='1.0' standalone='yes'?>
<movies>
<movie>
<title>PHP: Behind the Parser</title>
<characters>
<character>
<name>Ms. Coder</name>
<actor>Onlivia Actora</actor>
</character>
<character>
<name>Mr. Coder</name>
<actor>El ActÓr</actor>
</character>
</characters>
<plot>
So, this language. It is like, a programming language. Or is it a
scripting language? All is revealed in this thrilling horror spoof
of a documentary.
</plot>
<great-lines>
<line>PHP solves all my web problems</line>
</great-lines>
<rating type="thumbs">7</rating>
<rating type="stars">5</rating>
</movie>
</movies>
XML;
$xml = simplexml_load_string($xml_string);
$json = json_encode($xml); // convert the XML string to JSON
var_dump($json);
?>
輸出:
string(415) "{"movie":{"title":"PHP: Behind the Parser","characters":{"character":[{"name":"Ms. Coder","actor":"Onlivia Actora"},{"name":"Mr. Coder","actor":"El Act\u00d3r"}]},"plot":"\n So, this language. It is like, a programming language. Or is it a\n scripting language? All is revealed in this thrilling horror spoof\n of a documentary.\n ","great-lines":{"line":"PHP solves all my web problems"},"rating":["7","5"]}}"