我想在擴展庫中訪問數據庫函數。Codeigniter-如何在擴展本地庫時使用數據庫函數?
class My_Router extends CI_Router {
public function __construct()
{
parent::__construct();
}
function _set_routing()
{
.....
....
$query=$this->db->get('custome_routes');
$custom_routes=$query->result_array();
....
}
}
下面我想也
$CI =& get_instance();
$query=$CI->db->get('custome_routes');
$custom_routes=$query->result_array();
但它不工作。
幫助我....
由於提前, 洛根
它出現錯誤「致命錯誤:類'CI_Controller'找不到' – LoganPHP
@ complex857使用'BASEPATH'而不是'SYSDIR'。 – ADev
奇怪的是,我沒有看到任何問題,應該這樣做,我的測試設置工作正常。我只是猜測,但也許你的'_set_routing()'的執行不起作用。 (答案中的那個顯然不是完整的方法。) – complex857