Articles → PHP CODEIGNITER → Get_Instance Method In Codeigniter
Get_Instance Method In Codeigniter
Purpose
Example
$c = & get_instance();
$c->load->helper('date');
nice_date(NULL, NULL);
- The first line gives the instance using the "get_instance" method.
- Second line loads the helper.
- Third line calls the method "nice_date".