If you're doing large amounts of operations at the same time, consider using the batch request API. It lets you perform multiple tasks (up to 50) at the same time.
Here's an example on how you could theoretically use it:
$batches = array();
$i = $b = 0;
foreach($friends_array as $user) {
$argstag = array('to' => $user);
$argstag['x'] = $locations_x[$i];
$argstag['y'] = $locations_y[$i];
// If we've reached the batch limit, create a new batch request.
if ($i == 50) {
$b++;
$i = 0;
}
// Single batch request.
$batches["$b"][] = array(
'method' => 'POST',
'relative_url' => '/' . $photo_id . '/tags',
'body' => 'to=' . $user . '&x=' . $locations_x[$i] . '&y=' . $locations_y[$i]
);
$i++;
}
if (!empty($batches)) {
foreach ($batches AS $key => $batch) {
$b = json_encode($batch);
$res = $facebook->api('?batch=' . urlencode($b), 'POST');
// Facebook populates $res with the response.
}
}
This isn't tested, but hopefully that's helpful. It may not be what you're looking for for that, but it's worth noting if you have a large number of requests you need to send to Facebook's servers.