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