当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。