How to add a direct property assignment for tags with name space
eg .
if the tag is
<parent><child> My name is binbong</child></parent>
we can achieve this by
$parent->child = My name is binbong
However if the tags are like this
<parent><name:blah:child> My name is binbong</child></parent>
How can use the direct assignment property ?