标签: php codeigniter
我想知道如何在帮助器中调用codeigniter函数吗?
谢谢
答案 0 :(得分:2)
根据上面的评论,您可以像使用库一样使用帮助程序。也就是说,通过get_instance获取CodeIgniter超级对象:
get_instance
function some_helper_function(){ $CI =& get_instance(); // Now you can access whatever CodeIgniter resource via $CI }