PHP | XMLWriter endDtdAttlist()函数
XMLWriter::endDtdAttlist()函数是PHP中的一个内置函数,用于结束当前的 DTD AttList。 DTD 代表文档类型定义,它定义了 XML 文档的结构以及合法元素和属性。 DTD 在网页中不可见,因为它们的行为类似于评论。在 DTD 中,使用 ATTLIST 声明来声明属性。
句法:
bool XMLWriter::endDtdAttlist( void )
参数:此函数不接受任何参数。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面的示例说明了PHP中的XMLWriter::endDtdAttlist()函数:
示例 1:
openURI('php://output');
// Start the document
$writer->startDocument('1.0', 'UTF-8');
// Start the Dtd Attlist
$writer->startDtdAttlist('geeksforgeeks');
// End the Dtd Attlist
$writer->endDtdAttlist();
// End the document
$writer->endDocument();
?>
输出:
示例 2:
openURI('php://output');
// Start the document
$writer->startDocument('1.0', 'UTF-8');
// Start the Dtd Attlist
$writer->startDtdAttlist('This_is_not_visible_in_webpage');
// End the Dtd Attlist
$writer->endDtdAttlist();
// Add text to document
$writer->text('geeksforgeeks');
// End the document
$writer->endDocument();
?>
输出:
geeksforgeeks
参考: https://www. PHP.net/manual/en/函数.xmlwriter-end-dtd-attlist。 PHP