get_instance () là một hàm được định nghĩa trong các tệp cốt lõi của CodeIgniter.
https://stackoverflow.com/questions/4740430/explain-ci-get-instance
Chỉ có lớp mở rộng CI_Contoder, Model, View mới có thể sử dụng
$this->load->library('something');
$this->load->helper('something');$CI=&get instance();
$CI->load->library('something');
$CI->load->helper('something');// this following code will not work
Class Car
{
$this->load->library('something');
$this->load->helper('something');
}
//this will work
Class Car
{
$CI=&get_instance();
$CI->load->library('something');
$CI->load->helper('something');
}
// Here $CI is a variable.Last updated