Введение

Расширение SimpleXML предоставляет очень простой и легкий в использовании набор инструментов для преобразования XML в объект, с которым можно затем работать через его свойства и с помощью итераторов.

Коментарии

SimpleXML is simple, unless your XML document has namespaces (e.g., tags withs "colons" like <rs:data>). In this case, most code examples in this section will not work at all: namespaces imply that you need to do further processing with functions that are often undocumented.

Look for "namespace" in user notes.
2008-09-30 04:30:13
http://php5.kiev.ua/manual/ru/intro.simplexml.html
Автор:
SimpleXML has a beautiful simplicity. The following is one example of how it may be used with namespaces. 

Note, I use the XML that made Paul Reinheimer experience hair loss; for that XML see 

http://blog.preinheimer.com/index.php?/archives/172-SimpleXML,-Namespaces-Hair-loss.html

<?php
$dom 
= new DOMDocument();                 
$dom->loadXML$response );               

$ns='urn:ebay:apis:eBLBaseComponents';
$domlist=$dom->getElementsByTagNameNS($ns,'*');   
$sxe=simplexml_import_dom($domlist->item(0)); 
echo 
'Ebay Timestamp ',$sxe->Timestamp;   
?>

Running the above code left my own hair uneffected. :)
2009-03-24 17:09:47
http://php5.kiev.ua/manual/ru/intro.simplexml.html

    Поддержать сайт на родительском проекте КГБ