我正在分析XML,当前使用:
$data = simplexml_load_string($xmlFile);
foreach($data->item as $key => $current){
echo($current);
}
不过,我想知道,如果一个击中的元素是这样的:
<thumbnail url="http://foo.bar" height="225" width="300"/>
我该怎么拉里面的部分?(高度、URL、宽度)
谢谢!
最佳答案
foreach($data->item->thumbnail as $thumbnail) {
$url = $thumbnail['url'];
$height = $thumbnail['height'];
$width = $thumbnail['width'];
}
关于php - PHP Xml属性解析,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1156957/