I have this as xml:

<event:event>
         <event:sessionKey></event:sessionKey>
         <event:sessionName>Learn QB in Minutes</event:sessionName>
         <event:sessionType>9</event:sessionType>
         <event:hostWebExID></event:hostWebExID>
         <event:startDate>02/12/2009</event:startDate>
         <event:endDate>02/12/2009</event:endDate>
         <event:timeZoneID>11</event:timeZoneID>
         <event:duration>30</event:duration>
         <event:description></event:description>
         <event:status>NOT_INPROGRESS</event:status>
         <event:panelists></event:panelists>
         <event:listStatus>PUBLIC</event:listStatus>
      </event:event>

How can I loop through all of the event:event nodes and display, for example, all of the event:SessionKey's?

This does not work:

$xml = new SimpleXMLElement($r);
$xml->registerXPathNamespace('e', 'http://www.webex.com/schemas/2002/06/service/event');

foreach($xml->xpath('//e:event') as $event) {
 var_export($event->xpath('//e:sessionKey'));
}
link|improve this question

0% accept rate
Is there any reason for which you're not using DOMDocument? – Ionuț G. Stan Mar 7 '09 at 23:12
1  
This might help lornajane.net/posts/2010/… – Ajinkya Kulkarni Nov 30 '10 at 23:33
feedback

4 Answers

You have to register the namespace for each simpleXMLElement object you use.

$xml = new SimpleXMLElement($r);
$xml->registerXPathNamespace('e', 'http://www.webex.com/schemas/2002/06/service/event');

foreach($xml->xpath('//e:event') as $event) {
    $event->registerXPathNamespace('e', 'http://www.webex.com/schemas/2002/06/service/event');
    var_export($event->xpath('//e:sessionKey'));
}

The namespace should also be declared somewhere in the xml file.

<event:event xmlns:event="http://www.webex.com/schemas/2002/06/service/event">
...

The method ax described works too. You can skip the registerXPathNamespace if you know the xml file will always use the same prefix.

link|improve this answer
feedback

it does work without registerXPathNamespace and the full namespace prefix in the xpath queries:

$xml = new SimpleXMLElement($r);

foreach($xml->xpath('//event:event') as $event) {
 var_export($event->xpath('event:sessionKey'));
}
link|improve this answer
feedback

Using registerXPathNamespace and then calling xpath didn't actually work for me. I had to go with the solution provided in this great post : http://blog.preinheimer.com/index.php?/archives/172-SimpleXML,-Namespaces-Hair-loss.html

So in your case, this :

echo $xml->children('http://www.webex.com/schemas/2002/06/service/event')->sessionName;

Will output:

Learn QB in Minutes

link|improve this answer
feedback

I could be wrong but I don't think XML with the colon symbol like SOAP can be parsed properly using SimpleXMLElement.

I'm sure there's a more elegant way of doing this but I usually read the file contents into a variable using file_get_contents() then replace/remove the colons then send it to SimpleXMLElement.

link|improve this answer
Actually, there is some support for namespacing: us.php.net/manual/en/… And I'm aware that namespaces can be removed like so: $namespaceFree = preg_replace(’/([<<\/])([a-z0-9]+):/i’,'$1$2′,$xml); I'm just looking for a better solution. – user38968 Feb 28 '09 at 19:28
Folks. Please. Don’t use regular expressions or other string manipulation when working with XML data. The chances of breaking something (for example, XML’s “X” (for “extensible”)) are simply too high. – Scytale May 15 at 13:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.