我希望以用户友好的方式显示来自Facebook的查询结果。
例如,我希望显示照片而不是链接。
这是我的代码:
//fql query example using legacy method call and passing parameter
try{
$fql = "select name, hometown_location, sex, pic_square from user where uid=" . $user;
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);
}
catch(Exception $o){
d($o);
}
当我print_r
时,以下内容显示为:
FQL Query Example by calling Legacy API method "fql.query" Array ( [0] => Array ( [name] => Mohamed Abdelrahman [hometown_location] => [sex] => male [pic_square] => http://profile.ak.fbcdn.net/hprofile-ak-prn1/623888_100000415601915_463726603_q.jpg ) )
或我使用时:
foreach ($fqlResult as $a => $b)
{
print "$a: $b\n";
}
输出:
0: Array
感谢所有人的回答我自己解决了这个问题
foreach($fqlResult as $inner_arr)
foreach($inner_arr as $value)
echo "$value<br/>";
答案 0 :(得分:0)
请使用更新的方法和代码
//run fql query
$fql_query_url = 'https://graph.facebook.com/'
. 'fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()'
. '&access_token=' . $access_token;
$fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);
您可以在https://developers.facebook.com/docs/technical-guides/fql/
上关注完整教程答案 1 :(得分:0)
FQL Query Example by calling Legacy API method "fql.query" Array ( [0] => Array ( [name] => Mohamed Abdelrahman [hometown_location] => [sex] => male [pic_square] => http://profile.ak.fbcdn.net/hprofile-ak-prn1/623888_100000415601915_463726603_q.jpg ) )
在您的情况下,$fqlResult
是您的数组。 $a
是您的密钥[0]
,相应的值$b
是包含name
,hometown_location
,sex
和{{的数组1}}。
如果您要显示此pic_square
的照片,则需要将img src设置为$fqlResult