diff options
Diffstat (limited to 'ext/simplexml/examples/security.php')
-rw-r--r-- | ext/simplexml/examples/security.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/simplexml/examples/security.php b/ext/simplexml/examples/security.php new file mode 100644 index 0000000..17897b3 --- /dev/null +++ b/ext/simplexml/examples/security.php @@ -0,0 +1,6 @@ +<?php +$s = simplexml_load_file('security.xml'); +echo $s->id; +$s->id = 20; +$s->asXML('security.new.xml'); +?> |