I am using simplexml to parse xml data.
xml node has the value like
<title>
![CDATA[Director]]
</title>
Instead of getting value 'Director', I got the value as it is, '![CDATA[Director]]',with CDATA tag wrapped.
I can use use string function to extra the 'Director' from '![CDATA[Director]]', but my question is when I use simplexml to parse the xml data, should I or could I just get the 'Director', instead of '![CDATA[Director]]'?
Thanks!