0 votes
in CodeIgniter by
How can the programmer load multiple helper files?

1 Answer

0 votes
by
In order to load the multiple helper files the programmer generally have to specify them in an array just like depicted below:

$this->load->helper(array('helper1', 'helper2', 'helper3'));

Related questions

0 votes
asked Dec 25, 2020 in CodeIgniter by SakshiSharma
0 votes
asked Dec 27, 2020 in CodeIgniter by SakshiSharma
...