DOMElement::setIdAttribute()函數是PHP中的內置函數,用於將名稱指定的屬性聲明為ID類型。
用法:
void DOMElement::setIdAttribute( string $name, bool $isId )
參數:該函數接受上述和以下描述的兩個參數:
- $name:它指定屬性的名稱。
- $isId:它指定是否要讓名稱為ID類型。
返回值:此函數不返回任何內容。
異常:如果該節點是隻讀節點,則此函數將拋出DOM_NO_MODIFICATION_ALLOWED_ERR;如果name不是該元素的屬性,則此函數將拋出DOM_NOT_FOUND。
以下示例說明了PHP中的DOMElement::setIdAttribute()函數:
範例1:
<?php
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Enable validate on parse
$dom->validateOnParse = true;
// Create a div element
$element = $dom->appendChild(new DOMElement('div'));
// Create a id attribute to div
$attr = $element->setAttributeNode(new DOMAttr('id',
'geeksforgeeks'));
// Set that attribute as id
$element->setIDAttribute('id', true);
echo $dom->saveXML();
?>
輸出:按Ctrl + U查看DOM。
範例2:
<?php
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Enable validate on parse
$dom->validateOnParse = true;
// Create a div element
$element = $dom->appendChild(new DOMElement('div',
'GEEKSFORGEEKS'));
// Create a id attribute to div
$attr = $element->setAttributeNode(new DOMAttr('id',
'geeksforgeeks'));
// Set that attribute as id
$element->setIDAttribute('id', true);
// Get the text of element with id='geeksforgeeks'
// just to see if it works
$value = $dom->getElementById('geeksforgeeks')->textContent;
echo $value;
?>
輸出:
GEEKSFORGEEKS
參考: https://www.php.net/manual/en/domelement.setidattribute.php
相關用法
- PHP DOMElement hasAttributeNS()用法及代碼示例
- PHP DOMElement setAttributeNodeNS()用法及代碼示例
- PHP DOMElement setAttributeNS()用法及代碼示例
- PHP DOMElement setIdAttributeNode()用法及代碼示例
- PHP DOMElement setIdAttributeNS()用法及代碼示例
- PHP DOMElement getElementsByTagName()用法及代碼示例
- PHP DOMElement getAttributeNodeNS()用法及代碼示例
- PHP DOMElement getAttribute()用法及代碼示例
- PHP DOMElement __construct()用法及代碼示例
- PHP DOMElement getAttributeNS()用法及代碼示例
- PHP DOMElement removeAttributeNS()用法及代碼示例
- PHP DOMElement getAttributeNode()用法及代碼示例
- PHP DOMElement removeAttribute()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement setIdAttribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。