2
votes
PHP Associative arrays to and from XML
Sounds like a job for SimpleXML.
I would suggest a slightly different XML structure..
And wonder why you need to convert from an array -> XML and back.. If you can modify the arr …
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 …
