$photo=file_get_contents('https://graph.facebook.com/me/picture?access_token='.$token.'&type=large');
$request = new FacebookRequest(
$session,
'GET',
'/me/picture',
array(
'type' => 'large',
'redirect' => 'false'
)
);
$response = $request->execute();
$graphObject = $response->getGraphObject();
/* handle the result */