Download the PHP package solo/validator without Composer
On this page you can find all versions of the php package solo/validator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download solo/validator
More information about solo/validator
Files in solo/validator
Download solo/validator
More information about solo/validator
Files in solo/validator
Please rate this library. Is it a good library?
Informations about the package validator
Компонент solo-validator
Валидация данных HTML-форм (и не только)
Установка
Установка через composer:
"require": {
"solo/validator": "dev-master"
}
Примеры
$val = new Validator();
// проверяем текстовое поле
$text = $val->check($_POST["text"]), "Поле Text:")
->required(true, "обязательное")
->minLength(3, "длина значения должна быть больше 3 символов");
->value();
// проверям, выбран ли чекбокс
$agree = $val->check($_POST["agree"], "Поле agree:")
->required(true, "не отмечено")
->value();
// В зависимости от результата валидации формы делаем редирект
if ($val->hasError())
{
FormRestore::saveData("upload_form");
// покажем список сообщений из валидатора на предыдущей странице
Application::getInstance()->redirectBack($val->getMessages());
}
else
{
Application::getInstance()->redirect("/some_url", "Действие успешно выполнено");
}
All versions of validator with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.6.0
The package solo/validator contains the following files
Loading the files please wait ....