Parsing XML Feed with CDATA in PHP

jonboys

New Member
\[code\]<item> <title>Bazinga !</title> <ext:originalFilename><![CDATA[BVT-ch4-pt18.mp4]]></ext:originalFilename></item>\[/code\]I was using \[code\]SimpleXmlElement\[/code\] to parse feed, now the feed is changed and am no longer able to retreive originalFilename from the feed.I am using this right now\[code\]$xml = new SimpleXmlElement($feed);\[/code\]But this $xml doesnt have data about originalFilename.How can i Get the CDATA as well.
 
Back
Top