1. Go to this page and download the library: Download moccalotto/valit library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// get the errors associated with the top level field 'age'.
$errors = $checks->errorMessagesByPath('age');
// get the errors for the productId of the first orderLine.
$errors = $checks->errorMessagesByPath('orderLines/0/productId');
// get the error associated with the second orderLine
$errors = $checks->errorMessagesByPath('orderLines/1');
use Valit\Util\Val;
if (!Val::is($container, 'iterable')) {
throw new LogicException('$container should be iterable');
}
use Valit\Util\Val;
// an InvalidArgumentException will be thrown if $container is not iterable.
Val::mustBe($container, 'iterable');
use Valit\Util\Val;
$myException = throw LogicException('$container should be iterable');
// $myException will be thrown if $container is not iterable.
Val::mustBe($container, 'iterable', $myException);
// single type
Val::mustBe($value, 'callable');
// multiple allowed types via the pipe character
Val::mustBe($value, 'float | int');
// check that $foo is an array of floats
// or an array of integers
Val::mustBe($value, 'float[] | int[]');
// mixing classes, interfaces and basic types.
Val::mustBe($value, 'int|DateTime|DateTimeImmutable');
// multiple types via array notation
Val::mustBe($value, ['object', 'array']);
// a strict array with 0-based numeric index
Val::mustBe($value, 'mixed[]');
// a strict array of strict arrays
Val::mustBe($value, 'mixed[][]');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.