获得Feedburner订户数量

时间:2011-08-15 17:37:44

标签: feedburner xml

有人可以告诉我如何使用php将feedburner订阅者计为文本?我正在尝试以下,但它不起作用,因为我认为feedburner已更改xml文件的内容。 谢谢你的帮助。

$whaturl="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=USERNAME";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $whaturl);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
echo $fb;

1 个答案:

答案 0 :(得分:0)

需要将第7行更改为:

$fb = $xml->feed->entry->attributes()->circulation;

//很久以后编辑

我实际上在我的博客上有几个帖子,其中包含获取facebook / twitter / feedburner计数的代码。具有APC缓存的代码位于:http://www.glowingminds.co.uk/facebook-likes-twitter-follows-and-feedburner-count-in-php-with-curlsimplexml-deluxe/