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


PHP DOMDocument normalizeDocument()用法及代碼示例


DOMDocument::normalizeDocument()函數是PHP中的一個內置函數,用於規範文檔。如果您保存然後加載了文檔,此函數用於將文檔轉換為普通格式。

用法:

void DOMDocument::normalizeDocument( void )

參數:該函數不接受任何參數。


返回值:該函數不返回任何值。

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

示例1:

<?php 
  
// Create a new document 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create an element 
$domElement = $domDocument->createElement('organization', 'GeeksforGeeks'); 
  
// Append element to the document 
$domDocument->appendChild($domElement); 
  
// Use normalizeDocument() function 
// to normalize the document 
$domDocument->normalizeDocument(); 
  
// Create the XML file and display it 
echo $domDocument->saveXML(); 
  
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
<organization>GeeksforGeeks</organization>

示例2:

<?php 
    
// Create a new document 
$domDocument = new DOMDocument('1.0', 'iso-8859-1'); 
    
// Create an element 
$domElement1 = $domDocument->createElement('organization'); 
$domElement2 = $domDocument->createElement('name', 'GeeksforGeeks'); 
$domElement3 = $domDocument->createElement('address', 'Noida'); 
$domElement4 = $domDocument->createElement('email', 'abc@geeksforgeeks.org'); 
    
// Append element to the document 
$domDocument->appendChild($domElement1); 
$domElement1->appendChild($domElement2); 
$domElement1->appendChild($domElement3); 
$domElement1->appendChild($domElement4); 
    
// Use normalizeDocument() function 
// to normalize the document  
$domDocument->normalizeDocument(); 
   
// Create the XML file and display it 
echo $domDocument->saveXML(); 
    
?>
輸出:
<?xml version="1.0" encoding="iso-8859-1"?>
<organization>
    <name>GeeksforGeeks</name>
    <address>Noida</address>
    <email>abc@geeksforgeeks.org</email>
</organization>

參考: https://www.php.net/manual/en/domdocument.normalizedocument.php



相關用法


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