我的 CodeIgniter 控制器函数之一需要调用递归函数作为其功能的一部分。如果我把它放在控制器类中,函数调用会阻塞,如果我把它放在类之外,它就不能访问数据库函数($this->db->get())
。让它成为一个辅助函数可以解决这个问题吗?
问问题
27046 次
4 回答
38
您可以获得实例:
$CI =& get_instance();
之后,您将能够使用$CI->db
查询..
于 2013-04-08T20:34:08.237 回答
8
如果你想在库、助手中使用 $this 并访问所有方法:
$this->ci =& get_instance();
$this->ci->load->database();
你也可以这样做:
$this->ci->config->item('languages');
或者
$this->ci->load->library('session');
于 2013-04-08T20:38:11.270 回答
6
我们可以在 helper 中定义一个函数
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.
于 2018-06-28T11:53:23.643 回答
-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/得到它
于 2014-05-28T06:04:38.753 回答