Helper in codeigniter is not a php class but it is a function which is existing in helper file. Create a file with the name of your helper in /application/helpers here name as myhelper.php and place the following code in that file.
function yourHelperFunction($var = ''){
return $var;
}
Next is to we can use helper either from controller,model or view.
$this->load->helper('myhelper');
echo yourHelperFunction('my demo helper');
which will provide output my demo helper as a result.
0 Comment(s)