Posted by Scott Klarenbach on 11/10/05 20:26
I have a call
$oXML = simplexml_load_string($xmlString);
I then check it, with
if(!$oXML) throw new XMLException();
For some reason, it's always evaluating to FALSE. Even though there
are no errors and the rest of the xml parsing works fine.
If I change it to
if($oXML === FALSE) throw new XMLException();
then it works fine.
Is it evaluating a valid xml object as 0? I wonder if anyone can enlighten me.
Thanks,
Scott Klarenbach
[Back to original message]
|