/ Published in: PHP
Expand |
Embed | Plain Text
<?php $doc = new DOMDocument(); $doc->preserveWhiteSpace = false; $doc->formatOutput = true; $doc->load('my.xml');
You need to login to post a comment.
axolx on 10/28/10
1 person have marked this snippet as a favorite
<?php $doc = new DOMDocument(); $doc->preserveWhiteSpace = false; $doc->formatOutput = true; $doc->load('my.xml');
You need to login to post a comment.