當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DOMElement setIdAttributeNode()用法及代碼示例


DOMElement::setIdAttributeNode()函數是PHP中的一個內置函數,用於將DOMAttr實例指定的屬性聲明為ID類型。

用法:

void DOMElement::setIdAttributeNode( DOMAttr $attr, bool $isId )

參數:該函數接受上述和以下描述的兩個參數:


  • $attr:它將屬性指定為DOMAttr實例。
  • $isId:它指定是否要讓名稱為ID類型。

返回值:此函數不返回任何內容。

異常:如果該節點是隻讀節點,則此函數將拋出DOM_NO_MODIFICATION_ALLOWED_ERR;如果name不是該元素的屬性,則此函數將拋出DOM_NOT_FOUND。

以下示例說明了PHP中的DOMElement::setIdAttributeNode()函數:

範例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', 'GEEKSFORGEEKS')); 
  
// Create the id element  
$id = new DOMAttr('id', 'geeksforgeeks'); 
  
// Create a id attribute to div 
$attr = $element->setAttributeNode($id); 
  
// Set that attribute as id 
$element->setIDAttributeNode($id, true); 
  
echo $dom->saveXML(); 
?>

輸出:

範例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', 'Hey ! This is my content.')); 
  
// Create the id element  
$id = new DOMAttr('id', 'geeksforgeeks'); 
  
// Create a id attribute to div 
$attr = $element->setAttributeNode($id); 
  
// Set that attribute as id 
$element->setIDAttributeNode($id, true); 
  
// Get the text of element with id='geeksforgeeks' 
// just to see if it works 
$value = $dom->getElementById('geeksforgeeks')->textContent; 
    
echo $value; 
?>

輸出:

Hey ! This is my content.

參考: https://www.php.net/manual/en/domelement.setidattributenode.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement setIdAttributeNode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。