我已经阅读了大量关于此的SO条目,但我无法让它发挥作用。我真的不明白我做错了什么。我肯定做了一些明显愚蠢的事情,但此刻我看不到它。
这就是我正在做的事情:
$shopUrl = "http://api.spreadshirt.net/api/v1/shops/614852/productTypes?".
"locale=de_DE&fullData=false&limit=20&offset=0"
$ch = curl_init($shopUrl);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$result = curl_exec($ch);
curl_close($ch);
$products = new SimpleXMLElement($result);
foreach ($products->productType as $product) {
$resources = $product->children('http://www.w3.org/1999/xlink');
$resEntity = array(
'id' => (int)$product->attributes()->id,
'name' => (string)$product->name[0],
'price' => (string)$product->price[0]->vatIncluded[0],
'preview' => $resources
);
echo '<pre>'.print_r($resEntity, true).'</pre>';
}
这输出我
Array
(
[id] => 6
[name] => Männer T-Shirt klassisch
[price] => 9.90
[preview] => SimpleXMLElement Object
(
[@attributes] => Array
(
[href] => http://api.spreadshirt.net/api/v1/shops/614852/productTypes/6
)
)
)
我现在正在尝试访问HREF属性,但到目前为止我尝试过的所有内容都是$resources->attributes()->href
或$resources['href']
,但PHP继续说Node no longer exists
。
答案 0 :(得分:1)
您必须在attributes()
方法中指定命名空间。我猜(在attributes()
的手册中没有详细解释)你必须用第一个参数指定xml命名空间。这可能会从href
命名空间中获取xlink
属性。否则,您只需从默认 xml命名空间中获取属性,即type
和mediaType
(或从您获取属性的节点)。
应该像这样工作(未经测试):
$resources = $product->resources[0]; // <resources> node
$resource = $resources->resource[0]; // first <resource> node
$attribs = $resource->attributes('http://www.w3.org/1999/xlink'); // fetch all attributes from the given namespace
var_dump($attribs->href); // or maybe var_dump((string)$attribs->href);