1. Go to this page and download the library: Download vanilla/garden-schema 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/ */
[
'<property>', // basic property, can be any type
'<property>?', // optional property
'<property>:<type>?', // optional property with specific type
'<property>:<type>?' => 'Description', // optional, typed property with description
'<property>?' => ['type' => '<type'>, 'description' => '...'], // longer format
'<property>:o' => [ // object property with nested schema
'<property>:<type>' => '...',
...
],
'<property>:a' => '<type>', // array property with element type
'<property>:a' => [ // array property with object element type
'<property>:<type>' => '...',
...
]
]
$schema = Schema::parse([
'items:a', // array of any type
'tags:a' => 's', // array of strings
'attributes:o', // object of any type
'user:o' => [ // an object with specific properties
'name:s',
'email:s?'
]
]);
[
// You can specify nullable as a property attribute.
'opt1:s?' => ['nullable' => true],
// You can specify null as an optional type in the declaration.
'opt2:s|n?' => 'Another nullable, optional property.'
]
$schema = Schema::parse(['id:i', 'name:s']);
try {
// $u1 will be ['id' => 123, 'name' => 'John']
$u1 = $schema->validate(['id' => '123', 'name' => 'John']);
// This will thow an exception.
$u2 = $schema->validate(['id' => 'foo']);
} catch (ValidationException $ex) {
// $ex->getMessage() will be: 'id is not a valid integer. name is
$schema = Schema::parse(['page:i', 'count:i?']);
if ($schema->isValid(['page' => 5]) {
// This will be hit.
}
if ($schema->isValid(['page' => 2, 'count' => 'many']) {
// This will not be hit because the data isn't valid.
}
$sch = new Schema($userArray);
$sch->setRefLookup(new ArrayRefLookup($components));
$valid = $sch->validate(...);
use Garden\Schema\Schema;
$schema = Schema::parse([]);
// Enable a flag.
$schema->setFlag(Schema::VALIDATE_STRING_LENGTH_AS_UNICODE, true);
// Disable a flag.
$schema->setFlag(Schema::VALIDATE_STRING_LENGTH_AS_UNICODE, false);
// Set all flags together.
$schema->setFlags(Schema::VALIDATE_STRING_LENGTH_AS_UNICODE & Schema::VALIDATE_EXTRA_PROPERTY_NOTICE);
// Check if a flag is set.
$schema->hasFlag(Schema::VALIDATE_STRING_LENGTH_AS_UNICODE); // true
function (mixed $value, ValidationField $field): bool {
}
function (mixed $value, ValidationField $field): mixed {
}
$schema = new Schema([...]);
// By default schema returns instances of DateTimeImmutable, instead return a string.
$schema->addFormatFilter('date-time', function ($v) {
$dt = new \DateTime($v);
return $dt->format(\DateTime::RFC3339);
}, true);
class LocalizedValidation extends Validation {
public function translate($str) {
if (substr($str, 0, 1) === '@') {
// This is a literal string that bypasses translation.
return substr($str, 1);
} else {
return gettext($str);
}
}
}
// Install your class like so:
$schema = Schema::parse([...]);
$schema->setValidationClass(LocalizedValidation::class);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.