Here's an example of my xml data

<GetSendStatisticsResponse xmlns="http://ses.amazonaws.com/doc/2010-12-01/">
<GetSendStatisticsResult>
<SendDataPoints>
  <member>
    <DeliveryAttempts>69</DeliveryAttempts>
    <Timestamp>2011-09-12T01:00:00Z</Timestamp>
    <Rejects>0</Rejects>
    <Bounces>0</Bounces>
    <Complaints>0</Complaints>
  </member>
  <member>
    <DeliveryAttempts>1</DeliveryAttempts>
    <Timestamp>2011-09-08T17:00:00Z</Timestamp>
    <Rejects>0</Rejects>
    <Bounces>0</Bounces>
    <Complaints>0</Complaints>
  </member>
  <member>
    <DeliveryAttempts>282</DeliveryAttempts>
    <Timestamp>2011-09-09T18:00:00Z</Timestamp>
    <Rejects>0</Rejects>
    <Bounces>0</Bounces>
    <Complaints>0</Complaints>
  </member>

And here's my code:

$xml = simplexml_load_string($resp);
$result = $xml->xpath('//member');
foreach($result->member as $member)
    {
    echo "<p>";
    echo "Delivery Attempts: ".$member->DeliveryAttempts."<br/>";
    echo "</p>";
    }

But it's failing to work. I'm also OK if $xml is converted into JSON or an Array. Whatever works best to iterate through the xml to display DeliveryAttempts.

link|improve this question

75% accept rate
What does var_dump($result) produce? – Michael Sep 12 '11 at 16:56
1  
It says "array(0) { }" – johnwhitney Sep 12 '11 at 17:17
now do var_dump($resp); – beginner Sep 12 '11 at 17:33
Says "string(11769) " 1812 2011-09-04T21:23:00Z 0 1 0 105 2011-09-02T00:23:00Z 0 0 0 155 2011-09-02T01:08:00Z 0 0 0 65 2011-09-04T18:53:00Z 0 0 0 1192 2011-09-11T17:08:00Z 0 0 0 1 2011-09-08T00:38:00Z 0 0 0 631 2011-09-04T21:08:00Z 0 0 1 193 2011-09-02T01:23:00Z 0 0 0"...and so on – johnwhitney Sep 12 '11 at 17:39
If the xml that you posted is all that you have, then it is not valid as far as my knowledge goes. There are no closing tags for SendDataPoints, GetSendStatisticsResult and GetSendStatisticsResponse . – Srisa Sep 12 '11 at 18:01
feedback

2 Answers

up vote 0 down vote accepted

This is due to the XML namespace. Do something like this:

$xml->registerXPathNamespace( 'ses', 'http://ses.amazonaws.com/doc/2010-12-01/' );
$result = $x->xpath( '//ses:member' ) ;
link|improve this answer
This worked. Thanks! – johnwhitney Sep 12 '11 at 18:23
feedback

Try

foreach ($result as $member) {
   ...
}

instead.

link|improve this answer
That did not work – johnwhitney Sep 12 '11 at 17:20
Given your comment above, you've gotten no results from the xpath, so the foreach loop has no data to work on. – Marc B Sep 12 '11 at 17:21
Yes, but as shown above (in both xml and the raw string), the data is there. Something is malformed with the syntax or PHP is fubar. – johnwhitney Sep 12 '11 at 17:44
No, PHP's not fubar. Most likely your XML isn't being parsed properly and most of it's being dropped on the floor. Check libxml_get_errors() after you do the load. – Marc B Sep 12 '11 at 17:47
feedback

Your Answer

 
or
required, but never shown

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