Skip to content

Instantly share code, notes, and snippets.

@klaussantana
Created September 11, 2012 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klaussantana/3703129 to your computer and use it in GitHub Desktop.
Save klaussantana/3703129 to your computer and use it in GitHub Desktop.
Gerando um arquivo XML no PHP 5.
<?php
$XML = new SimpleXMLElement('<Configuration></Configuration>', null, false);
$XML->addChild('Teste', 'Um bom teste de criação de XML.');
$XML->asXML('teste.xml');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment