2022-02-11, 01:59 PM
That is exactly what I am doing. The file time is not changed on save.
I run the php -m command an SimpleXml, libxml, and xmlwriter all show up. I successfully created an xml file using dom with php like this
Martin
I run the php -m command an SimpleXml, libxml, and xmlwriter all show up. I successfully created an xml file using dom with php like this
Code:
<?php
$dom = new DOMDocument();
$dom->encoding = 'utf-8';
....
Martin