我在这里遇到一些奇怪的行为。 我使用以下代码来引用facebook api。
$query = "SELECT msg, user_id, comment_time FROM comments WHERE aid = '$aid' ORDER BY comment_time DESC";
$result = mysql_query($query) or die("ERROR: $query.".mysql_error());
if (mysql_num_rows($result) > 0) {
while($row = mysql_fetch_object($result)){
$uidval = $row->user_id;
$posterInfo = $facebook->api_client->users_getInfo($uidval, array('name', 'pic_square_with_logo', 'profile_url'));
$nameuser = $posterInfo[0]['name']; //this is line 50
$pic = $posterInfo[0]['pic_square_with_logo'];
$profile_url = $posterInfo[0]['profile_url'];
echo '<img src="'.$pic.'" />';
echo '<a href="'.$profile_url.'">'.$nameuser.'</a>';
echo '<br>';
echo $row->comment_time;
echo '<br>';
echo $row->msg;
}
}
它给了我这个错误:
Fatal error: Cannot use string offset as an array in /home/amitver/public_html/roadies/comments.php on line 50
但令人惊讶的是我在页面顶部成功使用了完全相同的代码。为什么这种奇怪的行为。这是页面顶部的代码:
//connect to fB
$uid = $user_id;
$userInfo = $facebook->api_client->users_getInfo($user_id, array('name', 'pic_square'));
$nameuser = $userInfo[0]['name'];
$pic = $userInfo[0]['pic_square'];
答案 0 :(得分:4)
我认为有时theusers_getInfo会返回一个数组,而有时候它会返回一个字符串。如果只有一个结果可用,它可能只返回一个简单的字符串。
试试这个:
$nameuser = ($posterInfo[0]) ? $posterInfo[0]['name'] : $posterInfo['name'];
答案 1 :(得分:2)
如果$ posterInfo实际上是一个空字符串(''),就会发生这种情况。
你可以在循环中找到var_dump($ posterInfo)并检查它在做什么......