I've been trying to use SimpleXML, but it doesn't seem to like XML that looks like this:

<xhtml:div>sample <xhtml:em>italic</xhtml:em> text</xhtml:div>

So what library will handle tags that look like that (have a colon in them)?

link|improve this question

70% accept rate
1  
Please post the relevant code snippet. SimpleXML shouldn't have any problems with namespaces. – Josh Davis Oct 16 '09 at 1:58
feedback

3 Answers

up vote 13 down vote accepted

Say you have some xml like this.

<xhtml:div>
  <xhtml:em>italic</xhtml:em>
  <date>2010-02-01 06:00</date>
</xhtml:div>

You can access 'em' like this: $xml->children('xhtml', true)->div->em;

however, if you want the date field, this: $xml->children('xhtml', true)->div->date; wont work, because you are stuck in the xhtml namespace.

you must execute 'children' again to get back to the default namespace:

$xml->children('xhtml', true)->div->children()->date;

Namespaces always seem to cause endless problems... If you ask me they are pure architectural flair thrown in to solve a bunch of problems that don't actually exist in the real world.

link|improve this answer
1  
I have to agree :) – Mark Apr 24 '10 at 5:06
1  
not sure why this isn't the selected answer. But for anyone in the future this is the one that solved my questions/problem! :) – daveomcd May 18 '11 at 16:22
feedback

Colon denotes an XML namespace. The DOM has good support for namespaces.

link|improve this answer
SimpleXML probably does too, but the OP is looking for a tag "xhtml:div" instead of just "div". – Matthew Scharley Oct 16 '09 at 0:15
Ohhh! Didn't realize that was a namespace. In that case, I might be able to get this to work... runs back to the drawing board – Mark Oct 16 '09 at 0:16
SimpleXML has some stuff for dealing with it, but I still can't get it to work right. – Mark Oct 16 '09 at 1:44
feedback

If you want to fix it quickly do this (I do when I feel lazy):

// Will replace : in tags and attributes names with _ allowing easy access
$xml = preg_replace('~(</?|\s)([a-z0-9_]+):~is', '$1$2_', $xml);

This will convert <xhtml: to <xhtml_ and </xhtml: to </xhtml_. Kind of hacky and can fail if CDATA NameSpaced XML container blocks are involved or UNICODE tag names but I'd say you are usually safe using it (hasn't failed me yet).

link|improve this answer
1  
That's dirty. But good ;) – joedevon Nov 23 '11 at 20:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.