标签: php xml attributes
我有一个看起来像这样的xml codelet。
<item> <link href='http://webaddress'/> </item>
以上代码存储在$str 我设法通过
$str
$item=simple_xml_load_string($str); $link=$item->link;
但我不知道如何在'link'标签中获取属性'href'的值。任何人都可以帮帮我吗?