ich eine XML-Datei in PHP exportiert:Wie DOCTYPE in XML-Export hinzufügen?
$xmldoc = new DOMDocument();
$xmldoc->formatOutput = true;
$xmldoc->encoding="Shift_JIS";
// create root nodes
$root = $xmldoc->createElement("TableData");
$xmldoc->appendChild($root);
$xmldoc->save($filename);
Ergebnis:
<?xml version="1.0" encoding="Shift_JIS"?>
<TableData> </TableData>
Nun, ich will Reihe <!DOCTYPE TableDef SYSTEM "TableData.dtd">
wie hinzuzufügen:
<?xml version="1.0" encoding="Shift_JIS"?>
<!DOCTYPE TableDef SYSTEM "TableData.dtd">
<TableData> </TableData>
Wie fügt DOCTYPE
in ein exportierte XML? Vielen Dank.
Check [DOMImplementation :: createDocumentType] (http://www.php.net/manual/en/domimplementation.createdocumenttype.php) – air4x
http://pointbeing.net/weblog/2009/03/adding- a-doctype-deklaration-zu-domdocument-in-php.html – Adam