respect-validation/docs/TrueVal.md

22 lines
428 B
Markdown
Raw Normal View History

2015-10-07 16:38:24 +02:00
# TrueVal
- `v::trueVal()`
Validates if a value is considered as `true`.
```php
v::trueVal()->validate(true); //true
v::trueVal()->validate(1); //true
v::trueVal()->validate('1'); //true
v::trueVal()->validate('true'); //true
v::trueVal()->validate('on'); //true
v::trueVal()->validate('yes'); //true
v::trueVal()->validate('0.5'); //false
v::trueVal()->validate('2'); //false
```
***
See also:
* [FalseVal](FalseVal.md)