Javascript debugger Website design ↑
DOMDocument { __construct(string version, string encoding);}
__construct(string version, string encoding);
Creates a new DOMDocument object.
DOMDocument
The version number of the document as part of the XML declaration.
The encoding of the document as part of the XML declaration.
<?php $dom = new DOMDocument('1.0', 'iso-8859-1'); echo $dom->saveXML(); /* <?xml version="1.0" encoding="iso-8859-1"?> */ ?>
Javascript debugger Website design