Home Backend Development PHP Tutorial Complete list of form validation rules for PHP Yii framework

Complete list of form validation rules for PHP Yii framework

Jan 10, 2017 pm 02:47 PM

Yii is a component-based, high-performance PHP framework for developing large-scale web applications. Yii is written in strict OOP and has complete library references and comprehensive tutorials.

No more nonsense, I will just post the code for you.

<?php
class ContactForm extends CFormModel
{
  public $_id;
  public $contact;//联系人
  public $tel;//电话
  public $fax;//传真
  public $zipcode;//邮编
  public $addr;//地址
  public $mobile;//手机
  public $email;//邮箱
  public $website;//网址
  public $qq;//QQ
  public $msn;//MSN
  public function rules()
  {
    return array(
      array(&#39;contact&#39;,&#39;required&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;联系人必须填写.&#39;),
      array(&#39;contact&#39;,&#39;length&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;min&#39;=>2,&#39;max&#39;=>10,&#39;tooShort&#39;=>&#39;联系人长度请控制在2-10个字符.&#39;,&#39;tooLong&#39;=>&#39;联系人长度请控制在2-10个字符.&#39;),
      array(&#39;tel&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^(\d{3}-|\d{4}-)(\d{8}|\d{7})?$/&#39;,&#39;message&#39; => &#39;请输入正确的电话号码.&#39;),
      array(&#39;fax&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^(\d{3}-|\d{4}-)(\d{8}|\d{7})?$/&#39;,&#39;message&#39; => &#39;请输入正确的传真号码.&#39;),
      array(&#39;mobile&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^13[0-9]{1}[0-9]{8}$|15[0189]{1}[0-9]{8}$|189[0-9]{8}$/&#39;,&#39;message&#39; => &#39;请输入正确的手机号码.&#39;),
      array(&#39;email&#39;,&#39;email&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;邮箱输入有误.&#39;),
      array(&#39;zipcode&#39;,&#39;required&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;邮编必须填写.&#39;),
      array(&#39;zipcode&#39;,&#39;numerical&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;邮编是6位数字.&#39;),
      array(&#39;zipcode&#39;,&#39;length&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;min&#39;=>6,&#39;max&#39;=>6,&#39;tooShort&#39;=>&#39;邮编长度为6位数.&#39;,&#39;tooLong&#39;=>&#39;邮编长度为6位数.&#39;),
      array(&#39;website&#39;,&#39;url&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;网址输入有误.&#39;),
      array(&#39;qq&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^[1-9]{1}[0-9]{4,11}$/&#39;,&#39;message&#39; => &#39;请输入正确的QQ号码.&#39;),
      array(&#39;msn&#39;,&#39;email&#39;,&#39;on&#39;=>&#39;edit&#39;,&#39;message&#39;=>&#39;MSN输入有误.&#39;),
    );
  }
}
Copy after login

Complete example:

public $password2;//非数据库的字段,但是在view中需要用到
  public $verify; //手机验证码
  public $fjg; //忘记号码
  /**
   * 映射数据库表名
   * @return string the associated database table name<br><br>     * www.shouce.ren
   */
  public function tableName()
  {
    return &#39;adm_user&#39;;
  }
  /**
   * 验证规则
   * @return array validation rules for model attributes.
   */
  public function rules()
  {
    // NOTE: you should only define rules for those attributes that
    // will receive user inputs.
    return array(
      //array(&#39;mobile_phone,name,status&#39;, &#39;required&#39;),
      array(&#39;mobile_phone&#39;, &#39;unique&#39;),//&#39;message&#39; => &#39;该手机号已经存在!&#39;
      array(&#39;mobile_phone&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^(13|15|18)[0-9]{9}$/&#39;,&#39;message&#39; => &#39;请输入正确的经办人手机号码.&#39;),
      //array(&#39;certificate_id&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/(.jpg|.gif|.png|\d)$/&#39;,&#39;message&#39; => &#39;请重新选择证书图像并且后缀只能是jpg、gif、png格式.&#39;),
      array(&#39;phone&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^(\d{3}-|\d{4}-)?(\d{8}|\d{7})?$/&#39;,&#39;message&#39; => &#39;请输入正确的座机号码.&#39;),
      array(&#39;fax&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^(\d{3}-|\d{4}-)(\d{8}|\d{7})?$/&#39;,&#39;message&#39; => &#39;请输入正确的传真号码.&#39;),
      //array(&#39;email_address&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/&#39;,&#39;message&#39; => &#39;请输入正确的邮箱.&#39;),
      array(&#39;email_address&#39;,&#39;email&#39;,&#39;message&#39;=>&#39;请输入正确的邮箱.&#39;),
      //验证密码和确认密码
      array("password2","compare","compareAttribute"=>"password","message"=>"两次密码不一致",&#39;on&#39;=>&#39;register&#39;),
      array("password2","compare","compareAttribute"=>"password","message"=>"两次密码不一致",&#39;on&#39;=>&#39;regonter&#39;),
      array(&#39;qq&#39;, &#39;match&#39;,&#39;pattern&#39; => &#39;/^[1-9]{1}[0-9]{4,11}$/&#39;,&#39;message&#39; => &#39;请输入正确的QQ号码.&#39;),
      array(&#39;type,certificate_id,company_type, nationality,yyzz_id, status,level,create_by_id, create_time,update_time&#39;, &#39;numerical&#39;, &#39;integerOnly&#39;=>true),
      array(&#39;verify&#39;, &#39;numerical&#39;, &#39;message&#39; => &#39;验证码不正确&#39;,&#39;integerOnly&#39;=>true),
      array(&#39;name,user_type,tuijianren&#39;, &#39;length&#39;, &#39;max&#39;=>20),
      array(&#39;password&#39;, &#39;length&#39;, &#39;max&#39;=>100),
      array(&#39;email_address,business&#39;, &#39;length&#39;, &#39;max&#39;=>50),
      array(&#39;communication_address,money, yhzh,yhmc,industry, company, register_address,yhdh,shangbiao,zhuanli,gongshang&#39;, &#39;length&#39;, &#39;max&#39;=>255),
      array(&#39;role_id&#39;,&#39;default&#39;, &#39;setOnEmpty&#39;=>true, &#39;value&#39;=>10),
      array(&#39;shangbiao&#39;,&#39;default&#39;, &#39;setOnEmpty&#39;=>true, &#39;value&#39;=>&#39;0,0&#39;),
      array(&#39;zhuanli&#39;,&#39;default&#39;, &#39;setOnEmpty&#39;=>true, &#39;value&#39;=>&#39;0,0&#39;),
      array(&#39;gongshang&#39;,&#39;default&#39;, &#39;setOnEmpty&#39;=>true, &#39;value&#39;=>&#39;0,0&#39;),
      array(&#39;password&#39;,&#39;default&#39;, &#39;setOnEmpty&#39;=>true, &#39;value&#39;=>&#39;123456&#39;),
      /*验证码*/
      array(&#39;verify&#39;,&#39;checkVerify&#39;, &#39;on&#39;=>&#39;register&#39;),
      array(&#39;email_address&#39;,&#39;checkemail&#39;, &#39;on&#39;=>&#39;regonter&#39;),
//     array(&#39;certificate_id&#39;, &#39;file&#39;,&#39;allowEmpty&#39;=>true,
//         &#39;types&#39;=>&#39;jpg, gif, png, doc, txt&#39;,
//         &#39;maxSize&#39;=>1024 * 1024 * 10, // 10MB
//         &#39;tooLarge&#39;=>&#39;文件大小不能超过10M!&#39;,
//         &#39;message&#39;=>&#39;请先上传证书图像.&#39;
//     ),
      // The following rule is used by search().
      // @todo Please remove those attributes that should not be searched.
      array(&#39;id,role_id,name, password,user_type, email_address,tuijianren,shangbiao,company_type,zhuanli,gongshang,money,yhzh,yhmc,yyzz_id,yhdh,type,level, phone, qq, mobile_phone, fax, communication_address, nationality, industry, company, business, register_address, certificate, status, create_by_id, create_time, update_time&#39;, &#39;safe&#39;, &#39;on&#39;=>&#39;search&#39;),
    );
  } 
  /*
   * 手机验证码校验 
   */
  public function checkVerify($attribute,$params)
  {   
    $model=new Mess();
    $d_title = $model->find(array(&#39;condition&#39;=>&#39;suij=:suij and tel=:tel and type>:type and time>:time&#39;,&#39;params&#39;=>array(&#39;:suij&#39;=>$this->verify,&#39;:tel&#39;=>$this->mobile_phone,&#39;:type&#39;=>0,&#39;:time&#39;=>(time()-3600)),&#39;select&#39;=>array(&#39;id&#39;)));
    //$d_title = $model->findByAttributes(array(&#39;suij&#39;=>$this->verify,&#39;tel&#39;=>$this->mobile_phone),array(&#39;select&#39;=>array(&#39;id&#39;)));
    if($d_title[&#39;id&#39;]<1)
    {
      $this->addError(&#39;verify&#39;, "验证码不正确。");
    }
    else
    {
      if($this->password == $this->password2)
      {
        $model->updateAll(array(&#39;type&#39;=>0),array(&#39;condition&#39;=>&#39;suij=:sj&#39;,&#39;params&#39;=>array(&#39;:sj&#39;=>$this->verify)));
      }
    }
  }
Copy after login

The above code is all about the form validation rules of the PHP Yii framework. I hope you like it.

For more articles related to the form validation rules of the PHP Yii framework, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? Apr 01, 2025 pm 03:09 PM

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...

See all articles