XMLWriter::startDtd
xmlwriter_start_dtd
Create start DTD tag
Description
Object-oriented style
public bool XMLWriter::startDtd(string $qualifiedName
, stringnull $publicId
= null
, stringnull $systemId
= null
)
bool xmlwriter_start_dtd(
XMLWriter $writer
,
string $qualifiedName
,
stringnull $publicId
= null
,
stringnull $systemId
= null
)
Parameters
-
writer
-
Only for procedural calls.
The XMLWriter instance that is being modified. This object is returned from a call to xmlwriter_open_uri or xmlwriter_open_memory.
-
qualifiedName
-
The qualified name of the document type to create.
-
publicId
-
The external subset public identifier.
-
systemId
-
The external subset system identifier.
Return Values
Returns true
on success or false
on failure.
See Also
- XMLWriter::endDtd
- XMLWriter::writeDtd