php-src/ext/simplexml/examples/security.php

7 lines
114 B
PHP
Raw Normal View History

<?php
$s = simplexml_load_file('security.xml');
echo $s->id;
$s->id = 20;
2003-10-26 18:56:03 +00:00
$s->to_xml_file('security.new.xml');
?>