XMLWriter->startDTD

(no version information, might be only in CVS)

XMLWriter->startDTD -- DTD beginnen

Beschreibung

Objektorientiert:

class XMLWriter {

bool startDTD ( string qualifiedName [, string publicId [, string systemId]] )

}

Prozedural:

bool xmlwriter_start_dtd ( resource xmlwriter, string qualifiedName [, string publicId [, string systemId]] )

Beginnt DTD.

Parameter Liste

xmlwriter

Only for procedural calls. The XMLWriter resource that is being modified. This resource comes from a call to xmlwriter_open_uri() or xmlwriter_open_memory().

qualifiedName

Qualifizierter Name des zu erstellenden Dokumententyps.

publicId

Public Identifier für PUBLIC.

systemId

Public Identifier für SYSTEM.

Rückgabewerte

Gibt bei Erfolg TRUE zurück, im Fehlerfall FALSE.

Siehe auch

XMLWriter->endDTD
XMLWriter->writeDTD