Skip to content

Instantly share code, notes, and snippets.

@8lane
Created December 31, 2013 14:05
Show Gist options
  • Save 8lane/8197235 to your computer and use it in GitHub Desktop.
Save 8lane/8197235 to your computer and use it in GitHub Desktop.
Get number of Facebook followers
<?php
function bfan() {
$pageID = '199776743514953';
$info = json_decode(file_get_contents('http://graph.facebook.com/' . $pageID));
return $info->likes;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment