📜  PHP | XMLWriter startDtdAttlist()函数

📅  最后修改于: 2022-05-13 01:56:20.130000             🧑  作者: Mango

PHP | XMLWriter startDtdAttlist()函数

XMLWriter::startDtdAttlist()函数是PHP中的一个内置函数,用于启动 DTD AttList。 DTD 代表文档类型定义,它定义了 XML 文档的结构以及合法元素和属性。在 DTD 中,使用 ATTLIST 声明来声明属性。

句法:

bool XMLWriter::startDtdAttlist( string $name )

参数:此函数接受一个包含属性列表名称的参数$ name。

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

下面的示例说明了PHP中的XMLWriter::startDtdAttlist()函数

示例 1:

openURI('php://output');
   
// Start the document
$writer->startDocument('1.0', 'UTF-8');
  
// Start the Dtd Attlist
$writer->startDtdAttlist('hello');
   
// End the Dtd Attlist
$writer->endDtdAttlist();
   
// End the document
$writer->endDocument();
?>

输出:按 Ctrl+U 查看 XML

示例 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 the document
$writer->text('GeeksforGeeks');
   
// End the document
$writer->endDocument();
?>

输出:

GeeksforGeeks

参考: https://www. PHP.net/manual/en/函数.xmlwriter-start-dtd-attlist。 PHP