Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'));
}
share|improve this question
1  
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

6 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.

share|improve this answer

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'));
}
share|improve this answer
Yes it does work like a charm! – SleepyCod Nov 15 '12 at 17:40

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

share|improve this answer

Another approach is to use SimpleXML for parsing and DOMDocument for manipulation/access, which bypasses namespacing issues altogether:

$xml = new SimpleXMLElement($r);
$xml = dom_import_simplexml($xml);
$nodelist= $xml->getElementsByTagName('event');  
for($i = 0; $i < $nodelist->length; $i++) {
    $sessions = $nodelist->item($i)->getElementsByTagName('sessionKey');
    echo $sessions->item(0)->nodeValue;
}
share|improve this answer

use xpath please look at the question and visit the last answer that was posted by me.

share|improve this answer

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.

share|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
4  
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 '12 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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