SimpleXMLElement ve XPath, alıyorum boş array ()

0 Cevap php

Ben bir google çıkış yanıtı XML ayrıştırma ile biraz sorun yaşıyorum. XML kendisi ile hiçbir sorun yok yani XML düz google sunucudan geliyor.

Tüm yeni düzen-bildirim etiketleri ele almak istiyorum

Ben bu denedim ama () her döndürülen boş bir dizi olsun.

$xml = new SimpleXmlElement($raw_xml);
$notifications = $xml->xpath('notifications');
$notifications = $xml->xpath('/notification-history-response/notifications/new-order-notification');
$notifications = $xml->xpath('//new-order-notification');

An XML snipet (Just the beginning)

<notification-history-response xmlns="http://checkout.google.com/schema/2" serial-number="c5cda190-0eb1-4f91-87cd-e656e5598d38">
  <notifications>
    <new-order-notification serial-number="271578974677716-00001-7">
      <buyer-billing-address>
        <address1>19 sandbox st</address1>
        <address2></address2>

0 Cevap