0 votes
in CodeIgniter by
edited by

How can you load multiple helper files?

🔗Source: CodeIgniter Interview Questions and Answers

🔗Source: JAVA Interview Questions and Answers

1 Answer

0 votes
by
To load multiple helper files, specify them in an array,

$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
...