DOMImplementation::createDocumentType()函數是PHP中的一個內置函數,用於創建一個空的DOMDocumentType對象。實體聲明和符號不可用。
用法:
DOMDocumentType DOMImplementation::createDocumentType ( string $qualifiedName = NULL, string $publicId = NULL, string $systemId = NULL )
參數:此函數接受上述和以下所述的三個參數:
- $qualifiedName (Optional):它指定要創建的文檔類型的限定名稱。
- $publicId (Optional):它指定外部子集公共標識符的限定名稱。
- $systemId (Optional):它指定外部子集係統標識符。
返回值:此函數返回其ownerDocument設置為NULL的DOMDocumentType節點。
異常:如果名稱空間有錯誤(由$qualifiedName確定),則此函數將引發DOM_NAMESPACE_ERR。
下麵給出的程序說明了PHP中的DOMImplementation::createDocumentType()函數:程序1:
<?php
// Creates an instance of the DOMImplementation class
$imp = new DOMImplementation();
// Creates a DOMDocumentType instance
$dtd = $imp->createDocumentType(
'svg:svg', null, 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd');
// Get the systemId
echo $dtd->systemId;
?>
輸出:
http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd
程序2:
<?php
// Creates an instance of the DOMImplementation class
$imp = new DOMImplementation();
// Creates a DOMDocumentType instance
$dtd = $imp->createDocumentType('GeeksforGeeks');
// Get the name
echo $dtd->name;
?>
輸出:
GeeksforGeeks
參考: https://www.php.net/manual/en/domimplementation.createdocumenttype.php
相關用法
- d3.js d3.map.set()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js tan()用法及代碼示例
- p5.js sin()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- d3.js d3.max()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMImplementation createDocumentType() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。