Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any resources about the PHP XMLWriter functionality?

Tags:

php

xml

xmlwriter

The PHP documentation can be found here, but I think it's rather lacking. There are no examples of how to use these functions, and few (if any) of the pages have user comments. So where might I be able to find an explanation (and example code) on how to use these functions to write an XML document?

like image 250
Thomas Owens Avatar asked Apr 01 '26 06:04

Thomas Owens


2 Answers

I don't know any other resources, but I found the examples in the comments on this page quite helpful.

like image 90
wds Avatar answered Apr 03 '26 18:04

wds


I'd recommend looking at the DOM functions over the SimpleXML ones - it's much more robust. Not as simple, but definitely has more features.

like image 29
nickf Avatar answered Apr 03 '26 20:04

nickf