zoukankan      html  css  js  c++  java
  • PHP CI框架中的表单验证规则

    7. 载入框架中的类(此处以表单验证为例)

        public function index()

        {

            $this->load->helper('form');   //加载表单验证辅助函数

            $this->load->view("index/home.html");

        }

        public function send()

        {

            //载入表单验证类

            $this->load->library("form_validation");

            //设置规则

            $this->form_validation->set_rules('title', '标题', 'required|min_length[5]');

    //此处传递的三个参数,”title”是需要验证的表单的name,”标题”是提示语,'required|min_length[5]'是验证规则,使用|分割,可以写入多个规则

    $this->form_validation->set_rules(‘cid’, '栏目', 'required|min_length[5]');

    //设置多个表单验证

            //执行验证

            $status = $this->form_validation->run();  //验证结果为bool值

            if ($status) {

                echo "数据库操作";

            } else {

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

                $this->load->view("index/home.html");  //不通过加载视图,返回提示信息

            }

    }

    设置数组形式传递验证规则:

    新建文件:cation/config/form_vadication.php  (必须使用这个文件名)

    设置参数

    $config=array(

    ‘test’ =>array(

    array(

                             ‘field’=> ‘title’,

                            ‘label’=>’标题’,

                            ‘rules’=>’ required|min_length[5]’

                    ),

                    array(

                           ‘field’=> ‘cid’,

                            ‘label’=>’栏目’,

                             ‘rules’=>’ required|min_length[5]’

    )

    )

    )

    在表单验证的方法中传入该变量

    $this->form_validation->run(“test”);

  • 相关阅读:
    Apache Solr 远程命令+XXE执行漏洞(CVE-2017-12629)
    Apache Shiro RememberMe 1.2.4 反序列化漏洞
    ActiveMQ任意文件写入漏洞(CVE-2016-3088)
    ssrf对redis未授权访问写webshell
    fastjson<1.2.47 RCE 漏洞复现
    Redis基于主从复制的RCE(redis4.x 5.x)复现
    本机浏览器无法访问linux的tomcat
    测试覆盖率工具EclEmma安装与使用
    eclemma怎么安装 eclemma的安装与简单使用图文教程(附下载)
    .bat脚本基本命令语法
  • 原文地址:https://www.cnblogs.com/shiqi17/p/12833826.html
Copyright © 2011-2022 走看看