gpt4 book ai didi

php - SimpleXML - echo/print_r 返回不同的值

转载 作者:行者123 更新时间:2023-12-04 06:50:14 25 4
gpt4 key购买 nike

我正在尝试使用 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 语句这样的值。为什么这些不同?

最佳答案

Why are these different



因为这些变量在内部不是字符串,而是 SimpleXMLElement 类型的对象,在 echo 输出时会转换为字符串。

要在其他地方使用这些值,我通常会进行显式转换:
$bg_color = (string) $image['bgColor'];

关于将 simplexml 元素转换为字符串的规范问题在这里:
  • Forcing a SimpleXML Object to a string, regardless of context
  • 关于php - SimpleXML - echo/print_r 返回不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3236801/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com