Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just recently begun learning XML in the context of PHP and Javascript, and I've encountered a problem.

Here's the XML I'm using:

http://www.dkarndtcpa.net/new_site/faq.xml (I still can't figure out how to show the code in this little box here...)

So the issue is I want to put HTML markup within the XML, and then be able to extract this via PHP and embed the HTML in a different file that's reading the XML with SimpleXML. I'm echoing it with something along the lines of

echo $child->asXML();

However, of course the CDATA tags are still there and it doesn't work. So, my question is, is there either a way to A. embed HTML markup in a different way that is ignored by the XML parser but can be used in an HTML document, or B. a way to strip the CDATA tags from the code?

share|improve this question

closed as too localized by casperOne Aug 20 '12 at 15:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 1 down vote accepted

Just had to reload the string in the XML parser, but excluding CDATA.

echo simplexml_load_string($child->asXML(), null, LIBXML_NOCDATA)

Don't mind me.

share|improve this answer

The CDATA tags should disappear if you use the nodeValue property instead of asXML().

Something like

echo $child->nodeValue;

should do the job.

share|improve this answer
Unfortunately, it seems that nodeValue returns a SimpleXMLElement object, rather than a string or something useful. Or am I supposed to call another function on nodeValue in order to output it? – Will Aug 13 '10 at 21:04
@Will does echo (string)$child->nodeValue work? – Pekka 웃 Aug 13 '10 at 21:18
Still no luck. It's a regular node object [I think], so I doubt I could typecast it any which way. – Will Aug 13 '10 at 21:21
@Will awww sorry, I mixed up nodeValue with textContent. Does that work any better? – Pekka 웃 Aug 13 '10 at 21:42
That appears to return a SimpleXMLElement object as well, except for some reason whenever I output it. OOP -- found it, just had to search a little harder. – Will Aug 13 '10 at 22:04

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