Skip to content

Instantly share code, notes, and snippets.

@Uriel29
Last active August 29, 2015 14:10
Show Gist options
  • Save Uriel29/42d34116217238e92dce to your computer and use it in GitHub Desktop.
Save Uriel29/42d34116217238e92dce to your computer and use it in GitHub Desktop.
Get likes facebook page PHP
<?php
$url = 'http://graph.facebook.com/oceanoliterario'; //Page link
echo '['.$url.']: '.json_decode(file_get_contents($url))->{'likes'};
?>
//add variable
<?php
$url2 = 'http://graph.facebook.com/oceanoliterario';
$likes = json_decode(file_get_contents($url2))->{'likes'};
echo $likes;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment