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)?
|
I've been trying to use SimpleXML, but it doesn't seem to like XML that looks like this:
So what library will handle tags that look like that (have a colon in them)?
| |||||
feedback
|
|
Say you have some xml like this.
You can access 'em' like this: $xml->children('xhtml', true)->div->em; however, if you want the date field, this: you must execute 'children' again to get back to the default namespace:
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. | |||||||||
feedback
|
|
Colon denotes an XML namespace. The DOM has good support for namespaces. | |||||||
feedback
|
|
If you want to fix it quickly do this (I do when I feel lazy):
This will convert | |||||
feedback
|