PHP-从原子饲料中提取简单的馅饼
作者:互联网
如何使用简单的Pie从下面的s:variant块中获得标题标签?
<s:variant>
<id>product_variants-96590662</id>
<title>Default Title</title>
<s:price currency="GBP">10.00</s:price>
<s:sku>002</s:sku>
<s:grams>0</s:grams>
</s:variant>
我尝试了以下方法,以及“变体”和“ s”
$caption = $item->get_item_tags('http://www.w3.org/2005/Atom', 's:variant');
有问题的供稿为here(来自shopify),get_item_tags上的文档为here.
解决方法:
您可以从< feed>中读取的xml命名空间.标签.
<feed xmlns:s="http://jadedpixel.com/-/spec/shopify" xml:lang="en-US" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom">
根据它,您必须使用http://jadedpixel.com/-/spec/shopify作为get_item_tags()中的名称空间参数,第二个参数是不带s:的标记名称.
$varinat = $item->get_item_tags('http://jadedpixel.com/-/spec/shopify', 'variant');
标签:shopify,atom-feed,php,simplepie 来源: https://codeday.me/bug/20191011/1893984.html