在开始之前,我知道有很多与此类似的问题,但是请相信我,我阅读了全部(即使不是大多数)。我尝试了很多解决方案,但似乎都没有用。我得到的结果是一棵空白的“树”。这是我正在使用的代码。

$jSON = json_decode('array here');

function array2xml($array, $xml = false){
if($xml === false){
    $xml = new SimpleXMLElement('<result/>');
}

foreach($array as $key => $value){
    if(is_array($value)){
        array2xml($value, $xml->addChild($key));
    } else {
        $xml->addChild($key, $value);
    }
}

return $xml->asXML();
}

这是我正在使用的jSON数组。

http://pastebin.com/pN3QwSHU

我不确定为什么它不起作用。这是我使用该功能时的结果。
<result>
<generated_in>155ms</generated_in>
</result>

最佳答案

代替提供函数对象,尝试提供一个数组:

$jSON = json_decode($raw_data, true);
                            //  ^ add second parameter flag `true`

例子:
function array2xml($array, $xml = false){

    if($xml === false){
        $xml = new SimpleXMLElement('<result/>');
    }

    foreach($array as $key => $value){
        if(is_array($value)){
            array2xml($value, $xml->addChild($key));
        } else {
            $xml->addChild($key, $value);
        }
    }

    return $xml->asXML();
}

$raw_data = file_get_contents('http://pastebin.com/raw.php?i=pN3QwSHU');
$jSON = json_decode($raw_data, true);

$xml = array2xml($jSON, false);

echo '<pre>';
print_r($xml);

Sample Output

09-03 18:10