Search Results

7
votes

PHP simplexml problem

When you load the XML file, you'll need to handle the CDATA.. This example works: <?php $xml = simplexml_load_file('file.xml', NULL, LIBXML_NOCDATA); $description = $xml->xpa …
1
vote

Using SimpleXML to create an XML object from scratch

Sure you can. Eg. <?php $newsXML = new SimpleXMLElement("<news></news>"); $newsXML->addAttribute('newsPagePrefix', 'value goes here'); $newsIntro = $newsXML->a …
0
votes

PHP SimpleXML. How to get the last item?

You can start with this.. You'll be able to dig it out.. I don't like that they used the same tag name at 2 levels.. I try to avoid duplicate tag names. <?php $s = simplexml_lo …