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


PHP DOMAttr __construct()用法及代碼示例


DOMAttr::__construct()函數是PHP中的內置函數,用於創建新的DOMAttr對象。此創建的對象是隻讀類型。

用法:

public DOMAttr::__construct( string $name, string $value )

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


  • $name:此參數保存屬性的元素名稱。
  • $value:此參數保存屬性的值。

以下示例程序旨在說明PHP中的DOMAttr::__construct()函數:

示例1:

<?php 
  
// Create a new DOMDocument object 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create a root element 
$rootElement = new DOMElement('root'); 
  
// Append the element as child element  
$element = $domDocument->appendChild($rootElement); 
  
// Create an attribute 
$domAttr = new DOMAttr('attr', 'GeeksforGeeks'); 
  
// Set the attribute to the node 
$attr = $element->setAttributeNode($domAttr); 
  
// Display the XML document 
echo $domDocument->saveXML();  
  
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
<root attr="GeeksforGeeks"/>

示例2:

<?php 
   
// Create a new DOMDocument object 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
   
// Create a root element 
$rootElement = new DOMElement('root'); 
  
// Append the element as child element 
$element = $domDocument->appendChild($rootElement); 
   
// Create an attribute 
$domAttr1 = new DOMAttr('Name', 'GeeksforGeeks'); 
  
// Set the attribute to the node 
$attr = $element->setAttributeNode($domAttr1); 
   
// Create an attribute 
$domAttr2 = new DOMAttr('Address', 'Noida'); 
  
// Set the attribute to the node 
$attr = $element->setAttributeNode($domAttr2); 
   
// Create an attribute 
$domAttr3 = new DOMAttr('mail', 'abc@geeksforgeeks.org'); 
  
// Set the attribute to the node 
$attr = $element->setAttributeNode($domAttr3); 
   
// Display the XML document 
echo $domDocument->saveXML();  
   
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
<root Name="GeeksforGeeks" Address="Noida" mail="abc@geeksforgeeks.org"/>

參考: https://www.php.net/manual/en/domattr.construct.php



相關用法


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