我有一个位于指定 URL 的 xml 文件,其中包括一个降水概率节点,该节点有几个“值”元素,其模式实例声明允许它们为空。但是,php 中的 attributes() 函数不显示该元素的 XSI 声明。
$feedURL= "http://forecast.weather.gov/MapClick.php?lat=32.78520&lon=-79.99400&FcstType=dwml";
// read feed into SimpleXML object
$wxml = simplexml_load_file($feedURL);
echo $wxml->data->parameters->{'probability-of-precipitation'}->value[0]->attributes();
是否可以打印“XSI 属性”?谢谢