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