我有这个推特提要。我正在尝试解析原始推文的链接。它是第一个entry
。feed
我想获取第一个元素的 urlhttp://twitter.com/shiplu/statuses/220057421899505664
内部href
属性。link
我用过这个 xpath/feed/entry[0]/link[@rel = "alternate" and @type = "text/html"]
但它返回空字符串。
代码看起来像这样,
$link = $xml->xpath('/feed/entry[0]/link[@rel = "alternate" and @type = "text/html"]');
我想我快到了。谁能纠正我在这里做错了什么。