SimpleXML xpath 定向 (Google Checkout)

发布于 2024-11-07 19:45:20 字数 636 浏览 4 评论 0原文

将 google checkout 响应集成到 simplexml 中,以便我可以提取数据并保存它,但由于令人烦恼的原因似乎无法提取数据。

尝试获取项目名称 Bridges: Liquids and Gases、Bridges: Habitats of Australia

SimpleXML = http://pastie.org/ private/qtmbsgtinv7x5g6ikrzq

$xml = new \SimpleXMLElement($raw_xml);
   $book = $xml->xpath('//item-name');
   while(list( , $node) = each($book)) {
    echo 'Book: ',$node,"\n";
    }

我尝试过不同的方法

$book = $xml->xpath('/authorization-amount-notification/order-summary/shopping-cart/items/item/item-name');

Integrating the google checkout response into simplexml so i can pull the data and save it, but for the annoying reasons can't seem to pull the data out.

Trying to get the item names Bridges: Liquids and Gases, Bridges: Habitats of Australia

SimpleXML = http://pastie.org/private/qtmbsgtinv7x5g6ikrzq

$xml = new \SimpleXMLElement($raw_xml);
   $book = $xml->xpath('//item-name');
   while(list( , $node) = each($book)) {
    echo 'Book: ',$node,"\n";
    }

I've tried different approaches

$book = $xml->xpath('/authorization-amount-notification/order-summary/shopping-cart/items/item/item-name');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青柠芒果 2024-11-14 19:45:20

查看 Google Checkout PHP 客户端库源代码以获取更多想法,特别是 XML 解析器:

http://code.google.com/apis/checkout/samplecode.html

Look at the Google Checkout PHP client library source code for more ideas, in particular at the XML parser:

http://code.google.com/apis/checkout/samplecode.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文