有没有办法在json
中将xml
转换为PHP
?我知道xml到json是非常有可能的。
答案 0 :(得分:26)
如果您愿意使用PEAR中的XML Serializer,您可以通过两个简单的步骤将JSON转换为PHP对象,然后将PHP对象转换为XML:
include("XML/Serializer.php");
function json_to_xml($json) {
$serializer = new XML_Serializer();
$obj = json_decode($json);
if ($serializer->serialize($obj)) {
return $serializer->getSerializedData();
}
else {
return null;
}
}
答案 1 :(得分:11)
这取决于您希望XML看起来如何。我会尝试json_decode()
和PEAR::XML_Serializer
(more info and examples on sitepoint.com)的组合。
require_once 'XML/Serializer.php';
$data = json_decode($json, true)
// An array of serializer options
$serializer_options = array (
'addDecl' => TRUE,
'encoding' => 'ISO-8859-1',
'indent' => ' ',
'rootName' => 'json',
'mode' => 'simplexml'
);
$Serializer = &new XML_Serializer($serializer_options);
$status = $Serializer->serialize($data);
if (PEAR::isError($status)) die($status->getMessage());
echo '<pre>';
echo htmlspecialchars($Serializer->getSerializedData());
echo '</pre>';
(未经测试的代码 - 但你明白了)
答案 2 :(得分:8)
使用json_decode
破解JSON,并遍历它以生成您想要的任何XML。
如果您想知道,JSON和XML之间没有规范映射,因此您必须根据应用程序的需要自行编写XML生成代码。
答案 3 :(得分:5)
我将前两个建议合并到:
/**
* Convert JSON to XML
* @param string - json
* @return string - XML
*/
function json_to_xml($json)
{
include_once("XML/Serializer.php");
$options = array (
'addDecl' => TRUE,
'encoding' => 'UTF-8',
'indent' => ' ',
'rootName' => 'json',
'mode' => 'simplexml'
);
$serializer = new XML_Serializer($options);
$obj = json_decode($json);
if ($serializer->serialize($obj)) {
return $serializer->getSerializedData();
} else {
return null;
}
}
答案 4 :(得分:3)
本机方法可能是
function json_to_xml($obj){
$str = "";
if(is_null($obj))
return "<null/>";
elseif(is_array($obj)) {
//a list is a hash with 'simple' incremental keys
$is_list = array_keys($obj) == array_keys(array_values($obj));
if(!$is_list) {
$str.= "<hash>";
foreach($obj as $k=>$v)
$str.="<item key=\"$k\">".json_to_xml($v)."</item>".CRLF;
$str .= "</hash>";
} else {
$str.= "<list>";
foreach($obj as $v)
$str.="<item>".json_to_xml($v)."</item>".CRLF;
$str .= "</list>";
}
return $str;
} elseif(is_string($obj)) {
return htmlspecialchars($obj) != $obj ? "<![CDATA[$obj]]>" : $obj;
} elseif(is_scalar($obj))
return $obj;
else
throw new Exception("Unsupported type $obj");
}
答案 5 :(得分:1)
另一种选择是使用JSON streaming parser。
如果要在使用json_decode
时绕过PHP创建的中间对象图,使用流式处理器解析器会派上用场。例如,当您获得大型JSON文档并且内存存在问题时,您可以在使用流式解析器读取文档时直接输出带有XMLWriter
的XML。
一个例子是https://github.com/salsify/jsonstreamingparser
$writer = new XMLWriter;
$xml->openURI('file.xml');
$listener = new JSON2XML($writer); // you need to write the JSON2XML listener
$stream = fopen('doc.json', 'r');
try {
$parser = new JsonStreamingParser_Parser($stream, $listener);
$parser->parse();
} catch (Exception $e) {
fclose($stream);
throw $e;
}
JSON2XML侦听器需要实现Listener interface:
interface JsonStreamingParser_Listener
{
public function start_document();
public function end_document();
public function start_object();
public function end_object();
public function start_array();
public function end_array();
public function key($key);
public function value($value);
}
在运行时,侦听器将从解析器接收各种事件,例如,当解析器找到一个对象时,它会将数据发送到start_object()
方法。当它找到一个数组时,它将触发start_array()
,依此类推。在这些方法中,您可以将值委托给XMLWriter
中的相应方法,例如start_element()
等等。
免责声明:我与作者没有任何关系,也没有使用过该工具。我选择了这个库,因为API看起来非常简单,以说明如何使用基于事件的JSON解析器。