SimpleXML - echo / print_r return different values

梦想的初衷 提交于 2019-12-12 17:10:54

问题


I am trying to convert some xml into a json object using PHP.

This should be working, yet for some bizarre reason it is failing.

Could someone provide some input.

// Loop Through images and return the right one.
$i = 1;
foreach($page->image as $image) {
    if ($i == $_GET['id']) {
         echo json_encode(array(
            'background' => $image['bgColor'],
            'image' => $image['source'],
            'caption' => $image['caption']
         ));
    }
    $i++;
}

This code returns the following.

{"background":{"0":"000033"},
 "image":"0":"0210e849f02646e2f5c08738716ce7e8b3c1169112790078351021245495.jpg"},
 "caption":   {"0":"Frog"}}

print_r($image['bgColor']); shows 'SimpleXMLElement Object ( [0] => 000033 )'

echo $image['bgColor']; shows '000033'

How do I parse values like the echo statement instead of the print_r statement. Why are these different?


回答1:


Why are these different

Because these variables are not strings internally, but SimpleXMLElement type objects that get converted into strings when output by echo.

To use the values elsewhere,I usually do an explicit cast:

$bg_color = (string) $image['bgColor'];

A canonical question regarding casting a simplexml element into a string is here:

  • Forcing a SimpleXML Object to a string, regardless of context


来源:https://stackoverflow.com/questions/3236801/simplexml-echo-print-r-return-different-values

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!