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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。