Skip to content

Instantly share code, notes, and snippets.

@csalgueiro
Created October 4, 2013 10:38
Show Gist options
  • Save csalgueiro/6824044 to your computer and use it in GitHub Desktop.
Save csalgueiro/6824044 to your computer and use it in GitHub Desktop.
XML via DomDocument
$dom = new DOMDocument("1.0","utf-8");
$elemento = $dom->createElement("elemento");
$dom->appendChild($elemento);
$xml = $dom->saveXML();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment