Pular para o conteúdo principal

Working with XML Namespaces

Add a namespace to the document

Adding a namespace
$xml->addNamespace('my', 'http://www.example.com/mytest/');

will produce

<?xml version="1.0" encoding="utf-8"?>
<root xmlns:my="http://www.example.com/mytest/">
...
</root>

Add a node with a namespace prefix

Adding node with namespace prefix
$xml->appendChild('my:othernodens', 'teste');

Add a node with a namespace

Adding node with namespace URI
$xml->appendChild('nodens', 'teste', 'http://www.example.com/mytest/');