DOMDocument::__construct()函数是PHP中的内置函数,用于创建新的DOMDocument对象。
用法:
public DOMDocument::__construct( string $version, string $encoding )
参数:该函数接受上述和以下描述的两个参数:
- $version:此参数将文档的版本保留为XML声明的一部分。
- $encoding:此参数将文档编码保留为XML声明的一部分。
以下示例程序旨在说明PHP中的DOMDocument::__construct()函数:
示例1:
<?php
// Create new DOMDocument
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Display the output
echo $dom->saveXML();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1"?>
示例2:
<?php
// Create new DOMDocument
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Set xmlStandalone() function to True
$dom->xmlStandalone = "true";
// Display the output
echo $dom->saveXML();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
参考: https://www.php.net/manual/en/domdocument.construct.php
相关用法
- PHP DOMDocument loadXML()用法及代码示例
- PHP DOMDocument createEntityReference()用法及代码示例
- PHP DOMDocument createComment()用法及代码示例
- PHP DOMDocument createProcessingInstruction()用法及代码示例
- PHP DOMDocument createTextNode()用法及代码示例
- PHP DOMDocument save()用法及代码示例
- PHP DOMDocument saveHTML()用法及代码示例
- PHP DOMDocument saveHTMLFile()用法及代码示例
- PHP DOMDocument createAttribute()用法及代码示例
- PHP DOMDocument createElement()用法及代码示例
- PHP DOMDocument createCDATASection()用法及代码示例
- PHP DOMDocument saveXML()用法及代码示例
- PHP DOMDocument importNode()用法及代码示例
- PHP DOMDocument getElementsByTagName()用法及代码示例
- PHP DOMDocument createElementNS()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DOMDocument __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。