PHP将XML转换为JSON


157

我试图将xml中的xml转换为json。如果我使用简单的xml和json_encode进行简单的转换,则xml中的任何属性都不会显示。

$xml = simplexml_load_file("states.xml");
echo json_encode($xml);

所以我试图像这样手动解析它。

foreach($xml->children() as $state)
{
    $states[]= array('state' => $state->name); 
}       
echo json_encode($states);

状态的输出{"state":{"0":"Alabama"}}不是{"state":"Alabama"}

我究竟做错了什么?

XML:

<?xml version="1.0" ?>
<states>
    <state id="AL">     
    <name>Alabama</name>
    </state>
    <state id="AK">
        <name>Alaska</name>
    </state>
</states>

输出:

[{"state":{"0":"Alabama"}},{"state":{"0":"Alaska"}

var dump:

object(SimpleXMLElement)#1 (1) {
["state"]=>
array(2) {
[0]=>
object(SimpleXMLElement)#3 (2) {
  ["@attributes"]=>
  array(1) {
    ["id"]=>
    string(2) "AL"
  }
  ["name"]=>
  string(7) "Alabama"
}
[1]=>
object(SimpleXMLElement)#2 (2) {
  ["@attributes"]=>
  array(1) {
    ["id"]=>
    string(2) "AK"
  }
  ["name"]=>
  string(6) "Alaska"
}
}
}

请包含XML的代码片段以及解析后的最终数组结构。(var_dump效果很好。)
nikc.org 2012年

添加了输入,输出和var_dump
Bryan Hadlock'1

某些应用程序需要“ perfec XML到JSON映射”,即jsonML,请参阅此处的解决方案
彼得·克劳斯

Answers:


472

XML中的Json&Array来自3行:

$xml = simplexml_load_string($xml_string);
$json = json_encode($xml);
$array = json_decode($json,TRUE);

58
此解决方案并非完美无缺。它完全放弃了XML属性。因此<person my-attribute='name'>John</person>被解释为<person>John</person>
杰克·威尔逊

13
$ xml = simplexml_load_string($ xml_string,'SimpleXMLElement',LIBXML_NOCDATA); 展平cdata元素。
txyoji

28
@JakeWilson也许已经过去了两年,并且进行了各种版本修复,但是在PHP 5.6.30上,此方法生成所有数据。属性存储在@attributes键下的数组中,因此它绝对完美无瑕,美观。3行短代码可以很好地解决我的问题。
AlexanderMP

1
如果您有多个名称空间,则无法使用,只能选择一个名称空间,该名称空间将传递到$ json_string中:'(
jirislav

1
请记住,使用此解决方案时,当可能有多个具有相同名称的节点时,一个节点将导致键仅指向一个元素,但是多个节点将导致键指向元素的数组<list><item><a>123</a><a>456</a></item><item><a>123</a></item></list>-> {"item":[{"a":["123","456"]},{"a":"123"}]}ratfactor在php.net上提供的解决方案通过始终将元素存储在数组中来解决该问题。
Klesun

37

很抱歉回答一个旧帖子,但是本文概述了一种相对简短,简洁且易于维护的方法。我自己进行了测试,效果很好。

http://lostechies.com/seanbiefeld/2011/10/21/simple-xml-to-json-with-php/

<?php   
class XmlToJson {
    public function Parse ($url) {
        $fileContents= file_get_contents($url);
        $fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
        $fileContents = trim(str_replace('"', "'", $fileContents));
        $simpleXml = simplexml_load_string($fileContents);
        $json = json_encode($simpleXml);

        return $json;
    }
}
?>

4
如果您的XML中有多个相同标签的实例,则此方法将不起作用,而json_encode最终只会序列化标签的最后一个实例。
ethree 2013年

35

我想到了。json_encode处理对象的方式与处理字符串的方式不同。我将该对象转换为字符串,现在可以正常工作。

foreach($xml->children() as $state)
{
    $states[]= array('state' => (string)$state->name); 
}       
echo json_encode($states);

19

我想我参加聚会有点晚了,但是我写了一个小函数来完成这项任务。它还照顾属性,文本内容,即使具有相同节点名的多个节点是同级节点也是如此。

免责声明: 我不是PHP本地人,所以请忍受简单的错误。

function xml2js($xmlnode) {
    $root = (func_num_args() > 1 ? false : true);
    $jsnode = array();

    if (!$root) {
        if (count($xmlnode->attributes()) > 0){
            $jsnode["$"] = array();
            foreach($xmlnode->attributes() as $key => $value)
                $jsnode["$"][$key] = (string)$value;
        }

        $textcontent = trim((string)$xmlnode);
        if (count($textcontent) > 0)
            $jsnode["_"] = $textcontent;

        foreach ($xmlnode->children() as $childxmlnode) {
            $childname = $childxmlnode->getName();
            if (!array_key_exists($childname, $jsnode))
                $jsnode[$childname] = array();
            array_push($jsnode[$childname], xml2js($childxmlnode, true));
        }
        return $jsnode;
    } else {
        $nodename = $xmlnode->getName();
        $jsnode[$nodename] = array();
        array_push($jsnode[$nodename], xml2js($xmlnode, true));
        return json_encode($jsnode);
    }
}   

用法示例:

$xml = simplexml_load_file("myfile.xml");
echo xml2js($xml);

输入示例(myfile.xml):

<family name="Johnson">
    <child name="John" age="5">
        <toy status="old">Trooper</toy>
        <toy status="old">Ultrablock</toy>
        <toy status="new">Bike</toy>
    </child>
</family>

输出示例:

{"family":[{"$":{"name":"Johnson"},"child":[{"$":{"name":"John","age":"5"},"toy":[{"$":{"status":"old"},"_":"Trooper"},{"$":{"status":"old"},"_":"Ultrablock"},{"$":{"status":"new"},"_":"Bike"}]}]}]}

精美印刷:

{
    "family" : [{
            "$" : {
                "name" : "Johnson"
            },
            "child" : [{
                    "$" : {
                        "name" : "John",
                        "age" : "5"
                    },
                    "toy" : [{
                            "$" : {
                                "status" : "old"
                            },
                            "_" : "Trooper"
                        }, {
                            "$" : {
                                "status" : "old"
                            },
                            "_" : "Ultrablock"
                        }, {
                            "$" : {
                                "status" : "new"
                            },
                            "_" : "Bike"
                        }
                    ]
                }
            ]
        }
    ]
}

要记住的怪癖: 几个具有相同标记名的标记可能是同级标记。除最后一个兄弟姐妹外,其他解决方案很可能会丢弃所有其他兄弟姐妹。为了避免这种情况,即使每个节点只有一个孩子,也要使用一个数组,该数组为标记名的每个实例保存一个对象。(请参见示例中的多个“”元素)

甚至在有效XML文档中应该只存在一个根元素的情况下,也要与实例的对象一起存储为数组,以具有一致的数据结构。

为了能够区分XML节点内容和XML属性,每个对象属性都存储在“ $”中,内容存储在“ _”子级中。

编辑: 我忘了显示示例输入数据的输出

{
    "states" : [{
            "state" : [{
                    "$" : {
                        "id" : "AL"
                    },
                    "name" : [{
                            "_" : "Alabama"
                        }
                    ]
                }, {
                    "$" : {
                        "id" : "AK"
                    },
                    "name" : [{
                            "_" : "Alaska"
                        }
                    ]
                }
            ]
        }
    ]
}

它可以解析大型XML数据吗?
Volatil3'3

2
此解决方案更好,因为它不会丢弃XML属性。另请参阅xml.com/lpt/a/1658(请参阅“半结构化XML”),以了解为什么这种复杂的结构比简化的结构更好 $xml = simplexml_load_file("myfile.xml",'SimpleXMLElement',LIBXML_‌​NOCDATA);
彼得·克劳斯

非常感谢您的自定义功能!它使调整非常容易。顺便说一句,添加了函数的编辑版本,该版本以JS方式解析XML:每个条目都有自己的对象(如果条目具有相同的标记名,则条目不会存储在单个数组中),因此顺序得以保留。
lucifer63 '19

1
错误Fatal error: Uncaught Error: Call to a member function getName() on bool..我认为版本php失败:-( ..请帮助!
KingRider

10

一个常见的陷阱是忘记json_encode()不尊重带有textvalue attribute的元素。它将选择其中之一,即数据丢失。下面的功能解决了这个问题。如果决定采用json_encode/ decode方式,则建议使用以下功能。

function json_prepare_xml($domNode) {
  foreach($domNode->childNodes as $node) {
    if($node->hasChildNodes()) {
      json_prepare_xml($node);
    } else {
      if($domNode->hasAttributes() && strlen($domNode->nodeValue)){
         $domNode->setAttribute("nodeValue", $node->textContent);
         $node->nodeValue = "";
      }
    }
  }
}

$dom = new DOMDocument();
$dom->loadXML( file_get_contents($xmlfile) );
json_prepare_xml($dom);
$sxml = simplexml_load_string( $dom->saveXML() );
$json = json_decode( json_encode( $sxml ) );

这样,<foo bar="3">Lorem</foo>最终将不会像{"foo":"Lorem"}您的JSON中那样。


如果纠正了语法错误,则不会编译并且不会产生描述的输出。
理查德·基弗

什么$dom啊 那个是从哪里来的?
杰克·威尔逊

$ dom =新的DOMDocument(); 是它的来源
Scott

1
最后一行代码:$ json = json_decode(json_encode($ sxml))); 应该是:$ json = json_decode(json_encode($ sxml));
查理·史密斯

6

尝试使用这个

$xml = ... // Xml file data

// first approach
$Json = json_encode(simplexml_load_string($xml));

---------------- OR -----------------------

// second approach
$Json = json_encode(simplexml_load_string($xml, "SimpleXMLElement", LIBXML_NOCDATA));

echo $Json;

要么

您可以使用此库:https : //github.com/rentpost/xml2array


3

为此,我使用了Miles Johnson的TypeConverter。它可以使用Composer安装。

您可以使用它编写如下内容:

<?php
require 'vendor/autoload.php';
use mjohnson\utility\TypeConverter;

$xml = file_get_contents("file.xml");
$arr = TypeConverter::xmlToArray($xml, TypeConverter::XML_GROUP);
echo json_encode($arr);

3

优化Antonio Max答案:

$xmlfile = 'yourfile.xml';
$xmlparser = xml_parser_create();

// open a file and read data
$fp = fopen($xmlfile, 'r');
//9999999 is the length which fread stops to read.
$xmldata = fread($fp, 9999999);

// converting to XML
$xml = simplexml_load_string($xmldata, "SimpleXMLElement", LIBXML_NOCDATA);

// converting to JSON
$json = json_encode($xml);
$array = json_decode($json,TRUE);

4
我使用了这种方法,但是JSON为空。XML有效。
ryabenko-pro

2

如果您只想将XML的特定部分转换为JSON,则可以使用XPath检索此内容并将其转换为JSON。

<?php
$file = @file_get_contents($xml_File, FILE_TEXT);
$xml = new SimpleXMLElement($file);
$xml_Excerpt = @$xml->xpath('/states/state[@id="AL"]')[0]; // [0] gets the node
echo json_encode($xml_Excerpt);
?>

请注意,如果您的Xpath不正确,则会因错误而死亡。因此,如果您要通过AJAX调用进行调试,建议您也记录响应正文。


2
This is better solution

$fileContents= file_get_contents("https://www.feedforall.com/sample.xml");
$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
$array = json_decode($json,TRUE);
return $array;

2

魅力十足的最佳解决方案

$fileContents= file_get_contents($url);

$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);

$fileContents = trim(str_replace('"', "'", $fileContents));

$simpleXml = simplexml_load_string($fileContents);

//$json = json_encode($simpleXml); // Remove // if you want to store the result in $json variable

echo '<pre>'.json_encode($simpleXml,JSON_PRETTY_PRINT).'</pre>';

资源


1

这是Antonio Max提出的最受支持的解决方案的改进,该解决方案也可以与具有名称空间的XML一起使用(通过用下划线替换冒号)。它还有一些额外的选项(并且可以<person my-attribute='name'>John</person>正确解析)。

function parse_xml_into_array($xml_string, $options = array()) {
    /*
    DESCRIPTION:
    - parse an XML string into an array
    INPUT:
    - $xml_string
    - $options : associative array with any of these keys:
        - 'flatten_cdata' : set to true to flatten CDATA elements
        - 'use_objects' : set to true to parse into objects instead of associative arrays
        - 'convert_booleans' : set to true to cast string values 'true' and 'false' into booleans
    OUTPUT:
    - associative array
    */

    // Remove namespaces by replacing ":" with "_"
    if (preg_match_all("|</([\\w\\-]+):([\\w\\-]+)>|", $xml_string, $matches, PREG_SET_ORDER)) {
        foreach ($matches as $match) {
            $xml_string = str_replace('<'. $match[1] .':'. $match[2], '<'. $match[1] .'_'. $match[2], $xml_string);
            $xml_string = str_replace('</'. $match[1] .':'. $match[2], '</'. $match[1] .'_'. $match[2], $xml_string);
        }
    }

    $output = json_decode(json_encode(@simplexml_load_string($xml_string, 'SimpleXMLElement', ($options['flatten_cdata'] ? LIBXML_NOCDATA : 0))), ($options['use_objects'] ? false : true));

    // Cast string values "true" and "false" to booleans
    if ($options['convert_booleans']) {
        $bool = function(&$item, $key) {
            if (in_array($item, array('true', 'TRUE', 'True'), true)) {
                $item = true;
            } elseif (in_array($item, array('false', 'FALSE', 'False'), true)) {
                $item = false;
            }
        };
        array_walk_recursive($output, $bool);
    }

    return $output;
}

2
除非它是具有琐碎结构和非常可预测的数据的简单XML,否则不要使用Regex来解析XML。我不能强调这个解决方案有多糟糕。这会破坏数据。更不用说它非常慢(您使用正则表达式进行解析,然后再次进行解析?)并且不处理自闭标签。
AlexanderMP

我认为您不是真的在看这个功能。它不使用正则表达式进行实际的解析,只是作为处理名称空间的简单解决方案-它已经在我所有的xml案例中都适用-并且它正在运行是最重要的,而不是“从政治上来说是正确的”。不过,欢迎您根据需要进行改进!
TheStoryCoder

2
它对您有用的事实并不意味着它是对的。像这样的代码会生成难以诊断的错误并产生漏洞。我的意思是即使只是在类似w3schools.com/xml/xml_elements.asp这样的站点上简单地查看XML规范,也显示出了导致该解决方案不起作用的许多原因。就像我说的那样,它无法检测到自动关闭标签,例如<element/>,无法解决XML允许的以下划线开头或包含下划线的元素。无法检测到CDATA。正如我所说的,它很慢。由于内部解析,这是O(n ^ 2)的复杂度。
AlexanderMP

1
事实是,这里甚至没有要求处理名称空间,并且有处理名称空间的正确方法。命名空间作为一种有用的构造而存在,不能像这样进行解析,并且会变成可憎的东西,任何合理的解析器都不会对其进行处理。为此,您所需要做的并不是创建“ 2016年最慢算法”奖的竞争者,而是要做一些搜索,以提出各种实际解决方案,例如stackoverflow.com/ questions / 16412047 /…并且可以称其为改进吗?哇。
AlexanderMP

0

这里的所有解决方案都有问题!

...当表示形式需要完美的XML解释(属性没有问题)并重现所有text-tag-text-tag-text -...和标签顺序时。还要记住这里的JSON对象是“无序集合”(不是重复键,并且键不能具有预定义的顺序)...即使ZF的xml2json也错误(!),因为不能完全保留XML结构。

这里的所有解决方案都存在这种简单XML的问题,

    <states x-x='1'>
        <state y="123">Alabama</state>
        My name is <b>John</b> Doe
        <state>Alaska</state>
    </states>

... @FTav解决方案似乎比三行解决方案更好,但是使用此XML进行测试时也几乎没有错误。

旧的解决方案是最好的(对于无损表示)

Zorba项目和其他公司使用了今天称为jsonML的解决方案,该解决方案最初由Stephen McKameyJohn Snelson分别在〜2006〜2007中提出

// the core algorithm is the XSLT of the "jsonML conventions"
// see  https://github.com/mckamey/jsonml
$xslt = 'https://raw.githubusercontent.com/mckamey/jsonml/master/jsonml.xslt';
$dom = new DOMDocument;
$dom->loadXML('
    <states x-x=\'1\'>
        <state y="123">Alabama</state>
        My name is <b>John</b> Doe
        <state>Alaska</state>
    </states>
');
if (!$dom) die("\nERROR!");
$xslDoc = new DOMDocument();
$xslDoc->load($xslt);
$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($dom);

生产

["states",{"x-x":"1"},
    "\n\t    ",
    ["state",{"y":"123"},"Alabama"],
    "\n\t\tMy name is ",
    ["b","John"],
    " Doe\n\t    ",
    ["state","Alaska"],
    "\n\t"
]

参见http://jsonML.orggithub.com/mckamey/jsonml。该JSON的生产规则基于JSON-analog 元素

在此处输入图片说明

该语法是的元素定义和重复出现
element-list ::= element ',' element-list | element


2
我怀疑非常真实的xml结构会有实际的用例。
TheStoryCoder

0

在研究了所有答案之后,我想出了一个解决方案,该解决方案与跨浏览器(包括控制台/开发工具)的JavaScript函数配合得很好:

<?php

 // PHP Version 7.2.1 (Windows 10 x86)

 function json2xml( $domNode ) {
  foreach( $domNode -> childNodes as $node) {
   if ( $node -> hasChildNodes() ) { json2xml( $node ); }
   else {
    if ( $domNode -> hasAttributes() && strlen( $domNode -> nodeValue ) ) {
     $domNode -> setAttribute( "nodeValue", $node -> textContent );
     $node -> nodeValue = "";
    }
   }
  }
 }

 function jsonOut( $file ) {
  $dom = new DOMDocument();
  $dom -> loadXML( file_get_contents( $file ) );
  json2xml( $dom );
  header( 'Content-Type: application/json' );
  return str_replace( "@", "", json_encode( simplexml_load_string( $dom -> saveXML() ), JSON_PRETTY_PRINT ) );
 }

 $output = jsonOut( 'https://boxelizer.com/assets/a1e10642e9294f39/b6f30987f0b66103.xml' );

 echo( $output );

 /*
  Or simply 
  echo( jsonOut( 'https://boxelizer.com/assets/a1e10642e9294f39/b6f30987f0b66103.xml' ) );
 */

?>

它基本上创建了一个新的DOMDocument,将文件和XML文件加载到其中,并遍历每个节点和子节点,以获取数据/参数并将其导出为JSON,而没有令人讨厌的“ @”符号。

链接到XML文件。


0

此解决方案处理名称空间,属性,并通过重复元素(即使仅发生一次,也始终在数组中)产生一致的结果。受ratfactor的sxiToArray()启发。

/**
 * <root><a>5</a><b>6</b><b>8</b></root> -> {"root":[{"a":["5"],"b":["6","8"]}]}
 * <root a="5"><b>6</b><b>8</b></root> -> {"root":[{"a":"5","b":["6","8"]}]}
 * <root xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"><a>123</a><wsp:b>456</wsp:b></root> 
 *   -> {"root":[{"xmlns:wsp":"http://schemas.xmlsoap.org/ws/2004/09/policy","a":["123"],"wsp:b":["456"]}]}
 */
function domNodesToArray(array $tags, \DOMXPath $xpath)
{
    $tagNameToArr = [];
    foreach ($tags as $tag) {
        $tagData = [];
        $attrs = $tag->attributes ? iterator_to_array($tag->attributes) : [];
        $subTags = $tag->childNodes ? iterator_to_array($tag->childNodes) : [];
        foreach ($xpath->query('namespace::*', $tag) as $nsNode) {
            // the only way to get xmlns:*, see https://stackoverflow.com/a/2470433/2750743
            if ($tag->hasAttribute($nsNode->nodeName)) {
                $attrs[] = $nsNode;
            }
        }

        foreach ($attrs as $attr) {
            $tagData[$attr->nodeName] = $attr->nodeValue;
        }
        if (count($subTags) === 1 && $subTags[0] instanceof \DOMText) {
            $text = $subTags[0]->nodeValue;
        } elseif (count($subTags) === 0) {
            $text = '';
        } else {
            // ignore whitespace (and any other text if any) between nodes
            $isNotDomText = function($node){return !($node instanceof \DOMText);};
            $realNodes = array_filter($subTags, $isNotDomText);
            $subTagNameToArr = domNodesToArray($realNodes, $xpath);
            $tagData = array_merge($tagData, $subTagNameToArr);
            $text = null;
        }
        if (!is_null($text)) {
            if ($attrs) {
                if ($text) {
                    $tagData['_'] = $text;
                }
            } else {
                $tagData = $text;
            }
        }
        $keyName = $tag->nodeName;
        $tagNameToArr[$keyName][] = $tagData;
    }
    return $tagNameToArr;
}

function xmlToArr(string $xml)
{
    $doc = new \DOMDocument();
    $doc->loadXML($xml);
    $xpath = new \DOMXPath($doc);
    $tags = $doc->childNodes ? iterator_to_array($doc->childNodes) : [];
    return domNodesToArray($tags, $xpath);
}

例:

php > print(json_encode(xmlToArr('<root a="5"><b>6</b></root>')));
{"root":[{"a":"5","b":["6"]}]}

这实际上适用于多名称空间的情况,比其他解决方案要好,为什么要投反对票...
aaron

0

发现FTav的答案非常有用,因为它非常可定制,但是他的xml2js函数存在一些缺陷。例如,如果子元素具有相同的标记名,它们将全部存储在单个对象中,这意味着将不保留元素的顺序。在某些情况下,我们确实希望保留顺序,因此我们最好将每个元素的数据存储在单独的对象中:

function xml2js($xmlnode) {
    $jsnode = array();
    $nodename = $xmlnode->getName();
    $current_object = array();

    if (count($xmlnode->attributes()) > 0) {
        foreach($xmlnode->attributes() as $key => $value) {
            $current_object[$key] = (string)$value;
        }
    }

    $textcontent = trim((string)$xmlnode);
    if (strlen($textcontent) > 0) {
        $current_object["content"] = $textcontent;
    }

    if (count($xmlnode->children()) > 0) {
        $current_object['children'] = array();
        foreach ($xmlnode->children() as $childxmlnode) {
            $childname = $childxmlnode->getName();
            array_push($current_object['children'], xml2js($childxmlnode, true));
        }
    }

    $jsnode[ $nodename ] = $current_object;
    return $jsnode;
}

下面是它的工作原理。初始xml结构:

<some-tag some-attribute="value of some attribute">
  <another-tag>With text</another-tag>
  <surprise></surprise>
  <another-tag>The last one</another-tag>
</some-tag>

结果JSON:

{
    "some-tag": {
        "some-attribute": "value of some attribute",
        "children": [
            {
                "another-tag": {
                    "content": "With text"
                }
            },
            {
                "surprise": []
            },
            {
                "another-tag": {
                    "content": "The last one"
                }
            }
        ]
    }
}

-1

看起来$state->name变量正在保存数组。您可以使用

var_dump($state)

在里面foreach测试。

如果是这样,您可以将内的行更改foreach

$states[]= array('state' => array_shift($state->name)); 

纠正它。


看起来属性是数组,而不是$ state-> name
Bryan Hadlock'1

-1
$templateData =  $_POST['data'];

// initializing or creating array
$template_info =  $templateData;

// creating object of SimpleXMLElement
$xml_template_info = new SimpleXMLElement("<?xml version=\"1.0\"?><template></template>");

// function call to convert array to xml
array_to_xml($template_info,$xml_template_info);

//saving generated xml file
 $xml_template_info->asXML(dirname(__FILE__)."/manifest.xml") ;

// function defination to convert array to xml
function array_to_xml($template_info, &$xml_template_info) {
    foreach($template_info as $key => $value) {
        if(is_array($value)) {
            if(!is_numeric($key)){
                $subnode = $xml_template_info->addChild($key);
                if(is_array($value)){
                    $cont = 0;
                    foreach(array_keys($value) as $k){
                        if(is_numeric($k)) $cont++;
                    }
                }

                if($cont>0){
                    for($i=0; $i < $cont; $i++){
                        $subnode = $xml_body_info->addChild($key);
                        array_to_xml($value[$i], $subnode);
                    }
                }else{
                    $subnode = $xml_body_info->addChild($key);
                    array_to_xml($value, $subnode);
                }
            }
            else{
                array_to_xml($value, $xml_template_info);
            }
        }
        else {
            $xml_template_info->addChild($key,$value);
        }
    }
}

这是一个基于数据数组的小型通用解决方案,可以是JSON转换的json_decode ... lucky
Octavio Perez Gallegos

2
这以什么方式回答了原始问题?您的答案似乎比原始问题复杂,并且甚至都没有提到JSON。
Dan R

-1

如果您是ubuntu用户,请安装xml阅读器(我有php 5.6。如果您有其他人,请找到软件包并安装)

sudo apt-get install php5.6-xml
service apache2 restart

$fileContents = file_get_contents('myDirPath/filename.xml');
$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$oldXml = $fileContents;
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.