I'm trying to loop through an api call very quickly but I'm seeing very odd behavior with the following loop (doesn't loop through the entire array....writes only 1 or 2 records):
Any ideas:
$i = 0;
foreach($userfriends as $key => $value) {
if($key == "id"){
$friend_id = $value;
}
try {
$username = $friend_id;
$uservar = '/'.$username.'/likes?fields=id,category&limit=20';
$userlikes = $facebook->api($uservar);
}
catch (FacebookApiException $e) {
error_log($e);
}
$id = $userlikes[data][$i][id];
$cat = $userlikes[data][$i][category];
// WRITING FRIEND LIKES TO DATABASE
$sql="INSERT INTO likes (like_id, category, friend_id) VALUES ('$id', '$cat', '$friend_id');";
mysql_query($sql,$con);
$i++;
}
The array userfriends looks like this:
Array
(
[data] => Array
(
[0] => Array
(
[id] => 123123
)
[1] => Array
(
[id] => 456456
)
[2] => Array
(
[id] => 634476
)