security.php 108 B

123456
  1. <?php
  2. $s = simplexml_load_file('security.xml');
  3. echo $s->id;
  4. $s->id = 20;
  5. $s->asXML('security.new.xml');
  6. ?>