I'm doing this to create an album and upload a photo to user's profile:
$facebook->setFileUploadSupport(true);
$args = array('message' => $statusFinal);
$args['image'] = '@' . realpath($imagePath);
$data = $facebook->api('/me/photos', 'post', $args);
Is it possible to tag user friends? How can I do this?
Yes, it is possible and described in documentation