Security class in Codeigniter

徘徊边缘 提交于 2019-12-23 13:15:46

问题


I'm trying to use the Security class in Codeigniter 2.0.2 but I cant seem to find the class to load. Is it hidden somewhere?

Security Library as shown in CI user guide:

http://codeigniter.com/user_guide/libraries/security.html

Tried searching /system/libraries but it is not there...

Trying to load the security class with $this->load->library('security'); gives me an error:

Unable to load the requested class: security

回答1:


It is in helper according to codeigniter user guide

try

$this->load->helper('security');


来源:https://stackoverflow.com/questions/6268884/security-class-in-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!