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 に答える