parse only content from node containing CDATA using DOM
- From: "Peter Parker" <spiderman@xxxxxxxx>
- Date: Mon, 31 Dec 2007 03:25:46 -0500
I am using php5 to parse node content from a xml file. Could someone show me
if it's possible to to print the content without the ![CDATA[]] tags in the
following codes ? Thank you in advance
....
$colors = $doc->getElementsByTagName("color");
foreach($colors as $node) {
// to print only 'red' without the ![CDATA[]] tags as in
<color>![CDATA[red]]</color>
// I have tried the following lines but none of them worked, just printed
out emptry string
echo $node->textContent;
echo $node->firstChild->nodeValue;
echo $node->firstChild->data;
}
.
- Prev by Date: Re: newbie: date/time functions problems
- Next by Date: cookie
- Previous by thread: PHP equivalent to XMLHtttpRequest functions
- Next by thread: cookie
- Index(es):