i want to know is there way that I can pass my custom class name in autoload class
Example: in a controller i know we can do this
$this->load->library('parser','','my_parser')
but what i want to know is there way that i can pass custom name while autoloading
i.e
$autoload['libraries'] = array(('database','','my_db'));
how can i achieve this ? Thanks for the help