Are you using SimpleXML?
A solution for you seems to exist right here.
EDIT
Answer copied here for posterity's sake
Access the children by their XML namespace.
$dcChildren = $node->children( 'http://purl.org/dc/elements/1.1/' );
$title = $dcChildren->title;