php-src/ext/simplexml/examples/security.php

7 lines
108 B
PHP
Raw Normal View History

<?php
$s = simplexml_load_file('security.xml');
echo $s->id;
$s->id = 20;
2004-01-17 21:44:22 +00:00
$s->asXML('security.new.xml');
?>