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