PHP 클래스 yii\validators\BooleanValidator

Possible boolean values can be configured via the [[trueValue]] and [[falseValue]] properties. And the comparison can be either [[strict]] or not.
부터: 2.0
저자: Qiang Xue ([email protected])
상속: extends Validator
파일 보기 프로젝트 열기: yiisoft/yii2 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$falseValue the value representing false status. Defaults to '0'.
$strict whether the comparison to [[trueValue]] and [[falseValue]] is strict. When this is true, the attribute value and type must both match those of [[trueValue]] or [[falseValue]]. Defaults to false, meaning only the value needs to be matched.
$trueValue the value representing true status. Defaults to '1'.

공개 메소드들

메소드 설명
clientValidateAttribute ( $model, $attribute, $view )
init ( )

보호된 메소드들

메소드 설명
validateValue ( $value )

메소드 상세

clientValidateAttribute() 공개 메소드

public clientValidateAttribute ( $model, $attribute, $view )

init() 공개 메소드

public init ( )

validateValue() 보호된 메소드

protected validateValue ( $value )

프로퍼티 상세

$falseValue 공개적으로 프로퍼티

the value representing false status. Defaults to '0'.
public $falseValue

$strict 공개적으로 프로퍼티

whether the comparison to [[trueValue]] and [[falseValue]] is strict. When this is true, the attribute value and type must both match those of [[trueValue]] or [[falseValue]]. Defaults to false, meaning only the value needs to be matched.
public $strict

$trueValue 공개적으로 프로퍼티

the value representing true status. Defaults to '1'.
public $trueValue