5.2.6 preg_match_all problem?

I need some major help. From one day to the next, the output to text of all CDATA is no longer working.

$TheData = preg_match_all("/<![CDATA[(.*?)]]>/s", $Response, $url);

I used to get a text page of all of the textual output between the CDATA tags, of all the data in the XML response. Now, it’s empty. I’m not sure why it’s not parsing it out any longer.

From the preg_match_all, I then have the next line:

$testing = $url[1][0];

Does anyone know the reason why this stopped working?

Sponsor our Newsletter | Privacy Policy | Terms of Service