我需要转储我正在使用此代码的应用程序用户的一些信息!
$fbme = $facebook->api('/me');
$str = $fbme['name'].' '.$fbme['sex'].' '.$fbme['hometown_location'].' '.$fbme['profile_url'].'\r\n';
$fp = fopen("data.txt", "w");
fwrite($fp, $str);
fclose($fp);
但这仅显示名称,没有其他内容!为什么 ?