php-src/ext/simplexml/examples/security.php
2004-01-17 21:44:22 +00:00

7 lines
108 B
PHP

<?php
$s = simplexml_load_file('security.xml');
echo $s->id;
$s->id = 20;
$s->asXML('security.new.xml');
?>