DOMElement::getAttribute()函数是PHP中的内置函数,用于获取带有当前节点名称的属性值。
用法:
string DOMElement::getAttribute( string $name )
参数:该函数接受单个参数$name,该参数保存属性的名称。
返回值:此函数返回包含属性值的字符串值。
下面给出的程序说明了PHP中的DOMElement::getAttribute()函数:
程序1:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<body>
<strong attr=\"value\"> 22 </strong>
</body>");
// Get the strong element
$element = $dom->getElementsByTagName('strong');
// Get the attribute
$value = $element[0]->getAttribute('attr');
echo $value;
?>
输出:
value
程序2:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<body>
<div id=\"div1\"> DIV 1 </div>
<div id=\"div2\"> DIV 2 </div>
<div id=\"div3\"> DIV 3 </div>
</body>");
// Get all the div elements
$elements = $dom->getElementsByTagName('div');
// Get the id value of each element
echo "All the id values of divs are:<br>";
foreach ($elements as $element) {
echo $element->getAttribute('id') . "<br>";
}
?>
输出:
All the id values of divs are: div1 div2 div3
参考: https://www.php.net/manual/en/domelement.getattribute.php
相关用法
- PHP DOMElement getAttributeNodeNS()用法及代码示例
- PHP DOMElement __construct()用法及代码示例
- HTML DOM getAttribute()用法及代码示例
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- p5.js nfs()用法及代码示例
- p5.js str()用法及代码示例
- p5.js hex()用法及代码示例
- CSS var()用法及代码示例
- p5.js log()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMElement getAttribute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。