William Luis

0 %
William Luis
Fullstack Developer
  • Residence:
    Canada
  • City:
    Toronto
  • Age:
    26
French
English
Spanish
html
CSS
Js
PHP
WordPress
  • Bootstrap, Materialize
  • Stylus, Sass, Less
  • Gulp, Webpack, Grunt
  • GIT knowledge

Mostrar estatísticas do FeedBurner

8 de agosto de 2012
Image representing FeedBurner as depicted in C...
Image via CrunchBase

Aqui está uma peça rápida de código para simplesmente exibir estatísticas do FeedBurner no seu blog. Ainda estou para postar minhas estatísticas publicamente no meu blog, mas já vi vários blogs com o emblema feedburner padrão que acho que é muito feio. Então aqui está como, é só pegar as estatísticas usando PHP e cURL. Você pode, então, o estilo é como você gosta.

[sourcecode language=”php”]

$ch = curl_init();
//set the feed url and options plus a timeout value
$timeout=5;
curl_setopt($ch,CURLOPT_URL,’https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=AshleyFord-Papermashupcom’);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$result = curl_exec($ch);
// get just the subscriber number using the regex function
$subscribers = get_match(‘/circulation="(.*)"/isU’,$result);

echo ‘Papermashup.com has <strong>’.$subscribers.'</strong> subscribers’;

//close connection
curl_close($ch);

function get_match($regex,$result)
{
preg_match($regex,$result,$matches);
return $matches[1];
}

[/sourcecode]

Para ver a demostração clique aqui, para baixar clique aqui.

Fonte: http://papermashup.com/display-your-feedburner-stats/

Posted in Dicas, PHPTags:
Write a comment