<?php
$html = '<first_section>
     <second_section>
          <third_section id="2">
               <title>Mrs</title>
          </third_section>
     </second_section>
 </first_section>';

$xml = simplexml_load_string($html);
$section = $xml->xpath("//third_section[@id='2']")[0];
$section["id"] = 3;
echo $xml->asXML();