我正在尝试使用PHP将一些xml转换为json对象。
这应该有效,但由于一些奇怪的原因它失败了。
有人可以提供一些意见吗。
// 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++;
}
此代码返回以下内容。
{"background":{"0":"000033"},
"image":"0":"0210e849f02646e2f5c08738716ce7e8b3c1169112790078351021245495.jpg"},
"caption": {"0":"Frog"}}
print_r($image['bgColor']); shows 'SimpleXMLElement Object ( [0] => 000033 )'
echo $image['bgColor']; shows '000033'
如何解析echo语句之类的值而不是print_r语句。为什么这些不同?
答案 0 :(得分:3)
为什么这些不同
因为这些变量不是内部字符串,而是SimpleXMLElement
类型的对象,在echo
输出时会转换为字符串。
要在其他地方使用这些值,我通常会做一个明确的演员:
$bg_color = (string) $image['bgColor'];
关于将simplexml元素转换为字符串的规范问题在这里: