您好我在我创建的库文件夹中的函数有点问题。我似乎无法获得用户ID。如果我使用tank auth,不确定它应该是什么?
我使用codeigniter和tank auth。
function getAuthorName($id) {
$ci =& get_instance();
$ci->db->select()->from('users')->where('id', $user_id);
$result = $ci->db->get()->result_array();
return $result[0]['username'];
}
function getAuthorAvatar($id){
$ci =& get_instance();
$ci->db->select()->from('users')->where('id', $user_id);
$result = $ci->db->get()->result_array();
return $result[0]['avatar_link'];
}
答案 0 :(得分:1)
你的where-clause有一个错误。尝试:
$ci->db->select()->from('users')->where('id', $id);