PHP SimpleXMLElement::attributes() 函数



定义和用法

XML 是一种标记语言,用于在网络上共享数据,XML 既可供人类阅读,也可供机器阅读。SimpleXMLElement 类在 PHP 中表示 XML 文档。

SimpleXMLElement::attributes() 函数查找 SimpleXMLElement 对象中的属性及其值,并返回它们。

语法

SimpleXMLElement::attributes([$namespace, $is_prefix]);

参数

序号 参数和描述
1

namespace(可选)

这是一个字符串值,表示属性所属的命名空间。

2

is_prefix(可选)

这是一个布尔值,表示指定的命名空间是前缀 (TRUE) 还是 URL (FALSE)。

返回值

此函数返回一个包含属性的 SimpleXMLElement 类对象,如果在属性上调用则返回 FALSE。

PHP 版本

此函数首次在 PHP 5 版本中引入,并在所有后续版本中有效。

示例

以下示例演示了 SimpleXMLIterator::attributes() 函数的用法。

<html>
   <head>
      <body>
         <?php
            $str="<?xml version='1.0' standalone='yes'?>
            <Tutorial>
               <Name type = 'programming'>JavaFX</Name>
               <Pages>535</Pages>
               <Author>Krishna</Author>
               <Version>11</Version>
            </Tutorial>";
            $xml = new SimpleXMLElement($str);
            $attr = $xml->Name->attributes();
            print_r($attr); 
         ?>      
      </body>
   </head>   
</html>

这将产生以下结果:

SimpleXMLElement Object ( [@attributes] => Array ( [type] => programming ) )

示例

假设我们有一个包含以下标签的 xml 文件:

Data.xml

<Tutorials>

</Tutorials>

在下面的示例中,我们添加了一个带有属性的子元素,并使用 attributes() 函数检索它:

<html>
   <head>      
      <body>         
         <?php
            $doc = new DOMDocument;
            $xml = simplexml_load_file("data.xml");
            
            //file to SimpleXMLElement 
            $simpleXmlElement = simplexml_import_dom($xml);
            
            //Adding the child node
            $child = $xml->addChild('Tutorial');
            $ele = $child->addChild('Name', 'OpenCV');
            $ele->addAttribute('type', 'Image Processing');			
            $child->addChild('Pages', '230');
            $child->addChild('Author', 'Maruthi');
            $child->addChild('Version', '5.5');
            $xml->asXML("output.xml");   
            $attr = $xml->Tutorial->Name->attributes();
            print_r($attr); 			
         ?>
      </body>
   </head>
</html>

这将产生以下结果:

SimpleXMLElement Object ( [@attributes] => Array ( [type] => Image Processing ) )
php_function_reference.htm
广告