summaryrefslogtreecommitdiff
path: root/ext/simplexml/examples/security.php
blob: 9c3919136176c783f46503f678fc5de531ae8a79 (plain)
1
2
3
4
5
6
<?php
$s = simplexml_load_file('security.xml');
echo $s->id;
$s->id = 20;
$s->to_xml_file('security.new.xml');
?>