函数名:SimpleXMLElement::attributes()
适用版本:PHP 5, PHP 7
函数描述:该函数用于返回当前元素的属性列表。
语法:public SimpleXMLElement::attributes ( void ) : SimpleXMLElement
参数:无
返回值:返回一个SimpleXMLElement对象,其中包含当前元素的属性列表。
示例:
$xml = '<book category="fiction">
<title>Harry Potter</title>
<author>J.K. Rowling</author>
</book>';
$sxe = new SimpleXMLElement($xml);
$attributes = $sxe->attributes();
foreach($attributes as $name => $value) {
echo $name . ': ' . $value . '<br>';
}
输出:
category: fiction
解释:上述示例中,我们首先创建了一个包含XML数据的字符串。然后,我们使用SimpleXMLElement类将其转换为一个可操作的对象。接下来,我们使用attributes()函数获取当前元素的属性列表,并使用foreach循环遍历属性列表。在循环中,我们输出了每个属性的名称和值。在这个例子中,我们只有一个属性"category",输出结果为"category: fiction"。