国产精品成人VA在线观看,亚洲日韩在线中文字幕综合,亚洲AV电影天堂男人的天堂,久久人人爽人人爽人人av东京热

News新聞

業(yè)界新聞動態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁      樂道系統(tǒng)FAQ      Yii2實現(xiàn)自定義獨(dú)立驗證器的方法

Yii2實現(xiàn)自定義獨(dú)立驗證器的方法

標(biāo)簽: 發(fā)布日期:2017-05-05 00:00:00 235

本文實例講述了Yii2實現(xiàn)自定義獨(dú)立驗證器的方法。分享給大家供大家參考,具體如下:

新建一個文件:

<?php
/**
 * author   : forecho <caizhenghai@gmail.com>
 * createTime : 2015/7/1 14:54
 * description:
 */
namespace common\helps;
use yii\validators\Validator;
class ArrayValidator extends Validator
{
  public function validateAttribute($model, $attribute)
  {
    if (!is_array($model->$attribute)) {
      $this->addError($model, $attribute, $attribute . '必須是一個數(shù)組');
    }
  }
}