我有以下代码(我已经连接到FB API,我有FB会话):
$user = $facebookObj->api('/' . $data['uid']);
$this->template->users[] = $user['first_name'];
我尝试获取用户 first_name ,但有时Facebook API会返回null值。 除了以下代码之外,还有解决这个问题的方法:
$this->template->users[] = (isset($user['first_name']) ? $user['first_name'] : '-';
感谢您的回复。