Home  >  Article  >  php教程  >  ThinkPHP 使用 callback 自动验证字段唯一

ThinkPHP 使用 callback 自动验证字段唯一

PHP中文网
PHP中文网Original
2016-05-25 16:59:121358browse

跳至

public $_validate = array(
        array('name', 'chkUniName', '英文代码已经存在.', self::EXISTS_VALIDATE, 'callback'),
 放在 CommonModel 中.
 //检查唯一
    public function chkUni($field){
        if(empty($field)){
            return false;
        }
        $map = array();
        $pk = $this->getPk();
        //如果有主键传入, 说明是编辑, 加入排除自己的条件.
        if(!empty($_REQUEST[$pk])){
           $map[$pk] = array('neq', intval($_REQUEST[$pk]));
        }
        $map[$field] = array('eq', trim($_REQUEST[$field]));
        if(null === $this->where($map)->find()){
            return true;
        }else{
            return false;
        }
    }
    //检查 name 是否存在
    protected function chkUniName(){
        return $this->chkUni('name');
    }

                   

Statement:
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