Download the PHP package codesvault/validator without Composer
On this page you can find all versions of the php package codesvault/validator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download codesvault/validator
More information about codesvault/validator
Files in codesvault/validator
Download codesvault/validator
More information about codesvault/validator
Files in codesvault/validator
Please rate this library. Is it a good library?
Informations about the package validator
Validator
Data validation composer package.
Installation
Install using composer.
Usage
It'll get data from $_REQUEST
by default. But you also can pass data as second parameter.
Handling Errors
If any data is invalid then error
method will return error messages array. Otherwise it'll return false.
getData
method will return validated data array.
Available Rules
Rule | Description |
---|---|
required | Check the value is present in the input data and is not empty. |
Check the value is valid email address. | |
url | Check the value is valid url. |
string | Check the value is string. |
stringOnly | Check the value is only string charecters. |
stringWithSpace | Check the value is string with space. |
stringWithNumber | Check the value is string with number. |
stringWithDash | Check the value is string with dash and underscore. |
uppercase | Check the value is string with upper case. |
lowercase | Check the value is string with lower case. |
mixedCase | Check the value is string with upper and lower case. |
stringWithSymbols | Check the value is string with symbols. |
min | Check the value is greater than or equal to the given value. |
max | Check the value is less than or equal to the given value. |
integer | Check the value is integer. |
sameValue | Check the value is same as the given value. |
array | Check the value is an array. |
All versions of validator with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1
The package codesvault/validator contains the following files
Loading the files please wait ....