1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00
Files
archived-php-src/ext/simplexml/examples/security.php
T
2003-05-21 14:06:00 +00:00

7 lines
122 B
PHP

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