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
Derick Rethans ec02fe98d8 - Fixed example
2003-05-21 20:16:04 +00:00

7 lines
131 B
PHP

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