后盾网-CI框架学习笔记
Posted 一纸流年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后盾网-CI框架学习笔记相关的知识,希望对你有一定的参考价值。
CI框架:
表单验证:
载入验证类
$this->load->library(‘form_validation‘);
设置规则
$this->form_validation->set_rules(‘name值‘,‘规则‘);
执行验证
$this->form_validation->run()
表单验证辅助函数:
$this->load->helper(‘form‘);
1、 set_value(‘name‘) //重填数据
2、 form_error(‘name‘,‘<span>‘,‘</span>‘)//显示错误
3、set_select()
4、set_checkbox()
5、set_radio()
以上是关于后盾网-CI框架学习笔记的主要内容,如果未能解决你的问题,请参考以下文章