gpt4 book ai didi

PHP SimpleXML 命名空间问题

转载 作者:可可西里 更新时间:2023-10-31 22:15:32 24 4
gpt4 key购买 nike

我正在尝试获取 RSS 提要中每个条目的 entry->id 和 entry->cap:parameter->value.... 下面是我正在使用的代码。它正确显示了 id,但是没有显示值字段....请帮助。

$url = 'http://alerts.weather.gov/cap/us.php?x=1';
$cap = simplexml_load_file($url);
foreach($cap->entry as $entry){
echo 'ID: ', $entry->id, "\n";
echo 'VTEC: ', $entry->children('cap', true)->parameter->value, "\n";
echo "<hr>";
}

提前感谢您的帮助。

最佳答案

<value>元素不在同一个namespace作为<cap:parameter> :

<cap:parameter>
<valueName>VTEC</valueName>
<value>/O.CON.KMPX.FL.W.0012.000000T0000Z-110517T1800Z/</value>
</cap:parameter>

所以你必须调用children()再次。

代码 ( demo )

$feed = simplexml_load_file('http://alerts.weather.gov/cap/us.php?x=1');
foreach ($feed->entry as $entry){
printf(
"ID: %s\nVTEC: %s\n<hr>",
$entry->id,
$entry->children('cap', true)->parameter->children()->value
);
}

关于PHP SimpleXML 命名空间问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6027398/

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