1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/simplexml/examples/security.php
2003-10-26 18:56:03 +00:00

7 lines
114 B
PHP

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