|
我在application\helpers(跟system在同一目录下,不是system的子目录)下写了一个myfuns_helper.php文件,里面是些常用的函数,每个页面都可能要用到。所以我打算做成全局函数,这样可以在view里面任意引用。
我用$autoload['helper']=array('url','myfuns'); 这种方式,出错
使用
$autoload['helper']=array('url');
$autoload['helper']=array('url','myfuns'); 这种方式也出错
(url是系统自带的helper里的url_helper.php文件)
难道必须每一页都要写一句this->load->helper('myfuns');吗? |
|