从模型函数返回null

时间:2014-03-10 11:24:34

标签: codeigniter model

我想从数据库中选择记录,但此函数返回null。

模型

function pub_article()
{
    $where=array('public'=>'1');
    $query=$this->db->get_where('article',$where);
    if($query->num_rows() > 0)
        return $query->result();
    else
        return false;
}

此代码有什么问题?

0 个答案:

没有答案