Be aware of quirks like this one:
<?php
$a = new SimpleXMLElement('<a><b/></a>');
$a->b = 'test & test';
$a->c = 'test & test';
print_r($a);
/*
OUTPUT:
SimpleXMLElement Object
(
[b] => test & test
[c] => test & test
)
*/
Be aware of quirks like this one:
<?php
$a = new SimpleXMLElement('<a><b/></a>');
$a->b = 'test & test';
$a->c = 'test & test';
print_r($a);
/*
OUTPUT:
SimpleXMLElement Object
(
[b] => test & test
[c] => test & test
)
*/