Düğüm çocuğun verilerini değiştirin

1 Cevap php

Ben böyle bir xml dosyası (Student.xml) var

<student>
  <studentinfo>
   <name>
       <first>John</first> 
       <last>Doe</last>
   </name>
   <gender>male</gender>   
  </studentinfo>
</student>

ve benim php kod

<?php

         $dom = new DOMDocument;

         $dom->load('Student.xml');

         $student = $dom->documentElement;

         $studentinfo = $student->getElementsByTagName('first')->item(0);

         $newName = $student->createTextNode('Jame'); 

         $student->replaceChild($newName, $student); 
?>

Ben içinde benim verileri yerini alamaz, bana bu sorunu çözmek için yardım lütfen?

1 Cevap

Lütfen php son satırında, ikinci parametre $ studentinfo olmayacak ve öğrenci $ olmamalı?

I http://www.phpbuilder.com/manual/en/function.dom-domnode-replacechild.php ne buldum göre, ikinci parametre değiştirmek ve senin koduna göre düğüm, $ studentinfo (görebildiğim kadarıyla) yerine düğümdür.