2012-11-12 10 views
5

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.

+0

Check [DOMImplementation :: createDocumentType] (http://www.php.net/manual/en/domimplementation.createdocumenttype.php) – air4x

+0

http://pointbeing.net/weblog/2009/03/adding- a-doctype-deklaration-zu-domdocument-in-php.html – Adam

Antwort