Download the PHP package moccalotto/valit without Composer
On this page you can find all versions of the php package moccalotto/valit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download moccalotto/valit
More information about moccalotto/valit
Files in moccalotto/valit
Package valit
Short Description Validate http requests, input-data and method arguments at runtime using self-documenting code
License MIT
Homepage https://moccalotto.github.io/docs/valit
Informations about the package valit
Valit
Validate variables using a fluent syntax.
Installation
Execute the following composer command in your terminal:
Usage
The example above uses the Valit\Ensure
facade to validate a variable.
If any of the assertions fail, a Valit\Exceptions\InvalidValueException
is thrown.
Validating values
If you don't want exceptions to be thrown, use the Check
facade.
You can use the throwExceptionIfNotSuccessful
method to throw an
exception if one or more assertions fail.
The advantage of this is that the exception thrown will
contain all the failed assertions, not just the first one.
See also:
- Using the »Ensure« facade
- Status Messages
- Error Messags
- InvalidValueException
Validating containers
You can easily test an entire array, for instance posted fields or a json response, in a structured and well defined way like the example below:
As you can see, check for nested data via the /
character.
You can get the error messages for a single field like so:
Utilities
Valit provides the Val
facade that lets to do quick type juggling and assertions.
Below are ways of testing if a variable is iterable, that is agnostic of your php version.
Or alternatively:
Or with your own custom exception
Below are some of the type validations you can make.
$type | Validation |
---|---|
null |
is_null() |
object |
is_object() |
int |
is_int() |
integer |
is_int() |
bool |
is_bool() |
boolean |
is_bool() |
string |
is_string() |
float |
is_float() |
double |
is_float() |
numeric |
is_numeric() |
intable |
stringable that can be converted to an int |
nan |
is_nan() |
inf |
is_inf() |
callable |
is_callable() |
iterable |
is_array() or is_a($value, 'Traversable') |
countable |
is_array() or is_a($value, 'Cointable') |
arrayable |
is_array() or is_a($value, 'ArrayAccess') |
container |
iterable , countable and arrayable |
stringable |
scalar or object with a__toString() method |
class name | is_a() |
foo[] | array of foo |
Code examples: