English, asked by Mubashshira6209, 1 year ago

What is the difference between helper and library in codeigniter?

Answers

Answered by kaviya030204
1
A CodeIgniter helper is a set of related functions (Common functions) which you could use them within Models, Views, Controllers,.. everywhere. Once you load (include) that file, you can get access to the functions. But a Library is a class, which you need to make an instance of the class (by $this->load->library()
Similar questions