Mr. Fixit
10.10.2007, 01:27
вот создание хмл файла, и нодов..
какой метод есть что бы создавать внутри нода текст?:p
$file = 'test.xml';
$xmlDoc = new DOMDocument('1.0','cp1251');
if(!@$xmlDoc->load($file))
{
$News = $xmlDoc->appendChild($xmlDoc->createElement('News'));
}
else
{
$News=$xmlDoc->firstChild;
}
$Content = $News->appendChild($xmlDoc->createElement('Content'));
$Section = $Content->appendChild($xmlDoc->createElement('Section'));
$Photo = $Section->appendChild($xmlDoc->createElement('Photo'));
$Photo->setTextNode ("DDD");//ERROR
какой метод есть что бы создавать внутри нода текст?:p
$file = 'test.xml';
$xmlDoc = new DOMDocument('1.0','cp1251');
if(!@$xmlDoc->load($file))
{
$News = $xmlDoc->appendChild($xmlDoc->createElement('News'));
}
else
{
$News=$xmlDoc->firstChild;
}
$Content = $News->appendChild($xmlDoc->createElement('Content'));
$Section = $Content->appendChild($xmlDoc->createElement('Section'));
$Photo = $Section->appendChild($xmlDoc->createElement('Photo'));
$Photo->setTextNode ("DDD");//ERROR