I have got Facebook data from graph.facebook.com without using CURL by doing some PHP randomness... :)
It's a bit sideways but I don't know how to use CURL and I also don't need to pass any app keys or anything etc!
// Create a function to calculate the number of fans.
function calculatefans($facebookid) {
$file = "https://graph.facebook.com/".$facebookid;
// Get data from that specific Facebook page
$facebookdata = file_get_contents($file);
// Reverse data from Facebook Graph so that the "likes" figure is at the front
$facebookbackwards = strrev($facebookdata);
// Select only the "likes" figure is in the variable
$offset = strpos($facebookbackwards, ":");
// Minus 1 from the offset
$newoffset = $offset-1;
$fansbackwards = substr($facebookbackwards, 1, $newoffset);
// Turn the "likes" figure the right way around
$fans = strrev($fansbackwards);
// Change the result from a string to an integer so you can do some maths on the result.
$fanresult = (int)$fans;
// Use return not echo because you want to do something with the data later.
return $fanresult;
}
However, this is obviously running very slowly... I was wondering if anyone had any ideas about how I could speed this up?
My website I'm running this on is http://www.ibizavote.com. If you see, the code is working however when I add this into the site the site goes from loading in 4.4secs to 14.4seconds.
I'm sure I can speed this up... Any ideas?
Thanks, Alex