Skip to content

Instantly share code, notes, and snippets.

@banksy89
Created May 25, 2012 13:58
Show Gist options
  • Save banksy89/2788298 to your computer and use it in GitHub Desktop.
Save banksy89/2788298 to your computer and use it in GitHub Desktop.
PHP - Count the number of Facebook Fans a page has
function facebook_fans ( $fb_page )
{
$data = json_decode( file_get_contents( "https://graph.facebook.com/" . $fb_page ) );
echo $data->likes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment