मैं का उपयोग कर PHP में एक xml फ़ाइल निर्यात:निर्यात xml में DOCTYPE को कैसे जोड़ें?
$xmldoc = new DOMDocument();
$xmldoc->formatOutput = true;
$xmldoc->encoding="Shift_JIS";
// create root nodes
$root = $xmldoc->createElement("TableData");
$xmldoc->appendChild($root);
$xmldoc->save($filename);
परिणाम:
<?xml version="1.0" encoding="Shift_JIS"?>
<!DOCTYPE TableDef SYSTEM "TableData.dtd">
<TableData> </TableData>
कैसे एक में DOCTYPE
जोड़ने के लिए:
<?xml version="1.0" encoding="Shift_JIS"?>
<TableData> </TableData>
अब, मैं की तरह पंक्ति <!DOCTYPE TableDef SYSTEM "TableData.dtd">
जोड़ना चाहते हैं निर्यात एक्सएमएल? धन्यवाद।
चेक [DOMImplementation :: createDocumentType] (http://www.php.net/manual/en/domimplementation.createdocumenttype.php) – air4x
http://pointbeing.net/weblog/2009/03/adding- एक-doctype-घोषणा करने वाली एक-DOMDocument में php.html – Adam