1

我有以下模型,print_r显示Array ( [id] => 1 [cms_name] => Content Mangement System ) 当前在我的控制器中,$data['contentMangement'] = $this->model->function但我不确定如何将上面的数组带入其中。

function systemOptions($options)
    {   
        $this->db->select($options);

        $query = $this->db->get('options');

        if($query->num_rows() > 0)
        {
            $row = $query->row_array();

            $row['cms_name'];
        }
                print_r($row);

        return $query->result_array();
    }
4

1 回答 1

1

如果你想要所有的选项,你可以这样做:

function systemOptions($options)
{   
    $this->db->select($options);

    return $this->db->get('options')->result_array();// will return empty array if there are no results

}

或者,如果您只想要第一行(这就是您的问题的样子),您可以这样做:

function systemOptions($options)
{   
    $this->db->select($options);

    $result = $this->db->get('options')->result_array();

    if(!empty($result))
    {
      return $result[0];
    }else{
      return null; //or false or array(), or whatever you want
    }
}
于 2012-06-12T10:55:56.060 回答