这篇文章主要为大家详细介绍了php 获取Feedburner的用户名示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 获取Feedburner的用户名
*
* @param
* @author 四海网 www.q1010.com
**/
function get_average_readers($feed_id,$interval = 7){
$today = date('Y-m-d', strtotime("now"));
$ago = date('Y-m-d', strtotime("-".$interval." days"));
$feed_url="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$feed_id."&dates=".$ago.",".$today;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $feed_url);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
$nb = 0;
foreach($xml->feed->children() as $circ){
$nb += $circ['circulation'];
}
return round($nb/$interval);
}
/*** 代码来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/226-0.html
注:关于php 获取Feedburner的用户名示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:Feedburner
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。