I'm calling the Facebook graph api via the php sdk and when I call and traverse the array through several nested foreach loops it takes far longer than it should even when I limit the # of records being called. Here's my code:
foreach ($userfriends['data'] as $friends) {
foreach ($friends as $key => $value) {
if($key == "id"){
$friend_id = $value;
}
// API CALL PULL FRIEND LIKES
try {
$username = $key;
$uservar = '/'.$username.'/likes?fields=id,category&limit=20';
$userlikes = $facebook->api($uservar);
}
catch (FacebookApiException $e) {
error_log($e);
}
foreach ($userlikes['data'] as $likes) {
foreach ($likes as $key => $value) {
if($key == "id"){
$like_id = $value;
}
if($key == "category"){
$userlike_category_id = $value;
}
}
// WRITING FRIEND LIKES TO DATABASE
$sql="INSERT INTO likes (like_id, category, friend_id)
VALUES ('$like_id', '$userlike_category_id', '$friend_id');";
mysql_query($sql,$con);
}
}
}