"Markus Fischer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> up until now, when outputing XML I've been constructing the output as a
continous string-soup in such ways like
>
> [...]
> $xml .= printf('<item name="%s">%s</item>', makeXmlSave($name),
makexmlSave($contentOfItem));
> [...]
>
> makeXmlSave() makes sure that quotes, ampersand, < and > are properly
escaped with their entity reference. However I was thinking if it wasn't
possible to e.g. generated a a complete DOM tree first and then just having
this tree being dumped as XML.
>
> I'm using PHP4 right now.
>
> thanks,
> - Markus
>

Hi Markus,

take a look at this package:
http://pear.php.net/package/XML_Tree

Regards, Torsten Roehr

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to