使用PHP将XML转换为没有属性的JSON?

时间:2011-02-01 01:01:21

标签: php xml json

我想用PHP将 XML 文件转换为 JSON 。 XML文件如下所示:

<content>
    <!-- other elements... -->
    <box id="1">
        <a>...</a>
        <b>...</b>
        <c>...</c>
    </box>
    <box id="2">
        <a>...</a>
        <b>...</b>
        <c>...</c>
    </box>
    <box id="3">
        <a>...</a>
        <b>...</b>
        <c>...</c>
    </box>
    <!-- more <box> elements... -->
    <!-- other elements... -->
</content>

我正在使用这个简单的PHP脚本:

// Open XML file with SimpleXML.
$xml = simplexml_load_file('file.xml');
// Convert XML content to JSON.
$json = json_encode($xml);
// Output JSON.
echo $json;

我将XML文件的完整内容作为JSON输出,但是我需要将脚本修改为:

  • 仅获取<box>的JSON 元素,而不是完整的文件。
  • 获取没有元素属性的JSON。

这是我想要输出的一个例子:

[{"a":"...","b":"...","c":"..."},
{"a":"...","b":"...","c":"..."},
{"a":"...","b":"...","c":"..."}]

请帮帮我,我该怎么做?什么是最佳做法?

提前致谢。

3 个答案:

答案 0 :(得分:1)

您可以尝试单独访问元素,例如:

$boxes = array();
// Loop through each box element.
foreach($xml->box as $box) {
    // Add an array with the a, b, and c children.
    $boxes[] = array('a' => $box-> a, 'b' => $box->b, 'c' => $box->c);
}
$json = json_encode($boxes);

这将遍历每个box元素,将a,b和c标记拉出到一个数组中,然后JSON编码数组而不是SimpleXML Object。

答案 1 :(得分:1)

如果节点名称(box)没有变化,您可以使用xpath

$xml = simplexml_load_file('test.xml');
$arr = (array) $xml -> xpath('box');

...但是因为每个box都有id,这导致了一种疯狂:

$final = array();
foreach ($arr as $box) {
    $box = (array) $box;
    unset($box['@attributes']);
    $final[] = $box;
}

我打算寻找更好的方法,但我开始看到一把漂浮的匕首,所以我放弃了。就像你需要json_encode $final数组一样。一帆风顺。

答案 2 :(得分:1)

基本上,您必须像其他受访者一样建议并自行格式化JSON输出。

这给了我以后的JSON - 非常类似于你想要的。它是递归的,因此它适用于任何XML。

此XML:

    <?xml version="1.0" encoding="UTF-8"?>
    <lss>
      <image type="Profile Image" part_id="11017" media="Image1.jpg" base="Image1" ext="jpg" width="128" height="96"/>
      <image type="Profile Image" part_id="11016" media="Image2.jpg" base="Image2" ext="jpg" width="180" height="225"/>
    </lss>

格式如下:

  {
     "image":[
        {
           "type":"Profile Image",
           "part_id":"11017",
           "media":"Image1.jpg",
           "base":"Image1",
           "ext":"jpg",
           "width":"128",
           "height":"96"
        },
        {
           "type":"Profile Image",
           "part_id":"11016",
           "media":"Image2.jpg",
           "base":"Image2",
           "ext":"jpg",
           "width":"180",
           "height":"225"
        }
     ]
  }

这对你来说可能没问题,但如果没有,你只需要稍微修改$ final_tree就可以在顶层获得裸体“盒子”对象数组。

    function xml2json($xmlString)
    {   
        $start_tree = (array) simplexml_load_string(trim($xmlString));

        $final_tree = array();

        loopRecursivelyForAttributes($start_tree,$final_tree);

        return json_encode($final_tree);
    }   

    function loopRecursivelyForAttributes($start_tree,&$final_tree)
    {   
        foreach ($start_tree as $key1=>$row1)
        {   
            if(!array_key_exists($key1, $final_tree))
            {   
                $final_tree[$key1] = array();
            }   

            // If there is only one sub node, then there will be one less
            // array - ie: $row1 will be an array which has an '@attributes' key
            if(array_key_exists('@attributes', $row1))
            {   
                $row1 = (array) $row1;

                getValues($start_tree,$final_tree, $key1, $row1);
            }
            else
            {   
                foreach ($row1 as $row2)
                {   
                    $row2 = (array) $row2;

                    getValues($start_tree,$final_tree, $key1, $row2);
                }
            }
        }
    }

    function getValues($start_tree,&$final_tree, $key1, $row2)
    {   
        foreach ($row2 as $key3=>$val3)
        {   
            $val3 = (array) $val3;

            if($key3 == '@attributes')
            {   
                $final_tree[$key1][] = $val3;
            }
            else
            {   
                $temp_parent = array();

                $temp_parent[$key3] = $val3;

                loopRecursivelyForAttributes($temp_parent,$final_tree[$key1][count($final_tree[$key1])-1]);
            }
        }   
    }