我的Codeigniter Helper课程出现了一个奇怪的问题。我在帮助器中声明了一些函数。我在自动加载中包含了帮助器。它在本地机器上运行完美。但是当我在实时服务器上运行它时,辅助函数在控制器中运行,但在视图中它给出了致命错误:调用未定义的函数strip_tags()。
在帮助文件my_helper.php中,函数是:
function do_strip($text) {
$text = strip_tags($text);
$text = stripcslashes($text);
return $text;
}
autoload.php:
$autoload['helper'] = array('url','form','my_helper');
在我看来,我打过电话:
<?=do_strip($someval)?>
错过了什么或做错了什么?有人可以帮我这个。
答案 0 :(得分:1)