如何使用 PHP在 MySQL 中存储Facebook 用户朋友列表?
我可以用下面的PHP代码 获取并打印用户朋友名单?
//get friends list
$friends_list = file_get_contents( https://graph.facebook.com/me/friends?access_token= . $atoken );
$friends_list_array = json_decode($friends_list,true);
//convert so that store in mysql
$my_friends = implode("," , $friends_list_array[ data ]);
echo "</br> my friends" . $my_friends;
//result my friendsArray,Array,Array,Array,Array,Array,Array,Array.....
我怎样才能在 MySQL 存储朋友名单?