CodeIgniter Helper函数可以使用数据库函数吗?

时间:2013-04-08 20:26:34

标签: php codeigniter recursion controller helper

我的一个CodeIgniter Controller函数需要调用递归函数作为其功能的一部分。如果我将它放在控制器类中,函数调用会产生阻塞,如果我将它放在类外,它就无法访问数据库函数($this->db->get())。将其作为辅助功能可以解决这个问题吗?

4 个答案:

答案 0 :(得分:32)

你可以获得实例:

 $CI =& get_instance();

之后,您将能够使用$CI->db进行查询..

答案 1 :(得分:5)

如果你想在库,助手中使用$ this,并访问所有方法:

    $this->ci =& get_instance();
    $this->ci->load->database();

你也可以这样做:

    $this->ci->config->item('languages');

    $this->ci->load->library('session');

答案 2 :(得分:2)

我们可以在助手中定义一个函数

if (!function_exists('getRecordOnId'))
{
    function getRecordOnId($table, $where){
        $CI =& get_instance();
        $CI->db->from($table);
        $CI->db->where($where);
        $query = $CI->db->get();
        return $query->row();
    }
}

我们可以从

这样的视图调用
$recordUser = getRecordOnId('users', ['id' => 5]); //here 5 is user Id which we can get from session or URL.

答案 3 :(得分:-2)

 //Select Data:

$this->db->select(‘fieldname seperated by commas’);

$this->db->from(‘table’);

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

$results=$query->result() ;

//Joins:

$this->db->select(‘*’);
$this->db->from(‘table1′);
$this->db->join(‘table2′, ‘table2.id = table1.id’);

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

我们可以从中得到它 http://skillrow.com/codeignitor-database-functions/