Download the PHP package wscore/validation without Composer

On this page you can find all versions of the php package wscore/validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package validation

Validation

A validation component, designed for multi-byte (i.e. Japanese language) support. Features includes, such as:

License

MIT License

PSR

PSR-1, PSR-2, and PSR-4.

Installation

Basic Usage

factory object

Use ValidationFactory to start validating an array. For instance,

validation

a sample code for validating an array,

types

The rule types are standard rules for the given validation type. Select validation type by as{Type}() after set method,

There are following predefined types that are compatible with HTML5 input types.

And there are some multiple filed types.

which are defined in Locale/{locale}/validation.types.php file.

validation rules

There are many rules for validations. You can chain them as shown in previous example codes;

Available filters, i.e. that may alter the value:

All the verifiers, i.e. check if the value satisfies the requirements:

Advanced Features

validating a list of input

To validate a list of input data, such as checkbox, use array() rules as follows. When the validation fails, it returns the error message as array.

multiple inputs

WScore/Validation can handle separate input fields, such as date, as one input. For instance, date, dateYM, datetime types

use rules to construct own multiple inputs as,

where suffix lists the postfix for the inputs, and format is the format string using sprintf.

confirm to compare values

for password or email validation with two input fields to compare each other.

Please note that the actual input strings are different. They become identical after lowering the strings.

order of filter

some filter must be applied in certain order...

custom validation

Use a closure as custom validation filter.

You cannot pass parameter (the closure is the parameter). argument is the ValueTO object which can be used to handle error and messages.

Setting an error to ValueTO will break the filter loop, i.e. no further rules will be evaluated.

setting values and errors

To set a value, or an error to the validator, use setValue and setError methods.

Setting error will make fails() method to return true.

Modifying Error Messages

To use your own messages, create a directory such as your/path/<locale>, then, create or copy the following files.

The validation.messages.php file contains the default error messages as an array that looks like:

whereas the error messages are determined as follows:

  1. message set by message rule,
  2. method and parameter specific message,
  3. method specific message,
  4. type specific message, then,
  5. general message

1. use message rule

use message method to set its message.

2. method and parameter specific message

some filters, matches and kanaType, has its message based on the parameter.

3. method specific message

some of the filters, such as required, has filter specific message.

4. type specific message

most of the rule types has its own messages.

5. general message

uses generic message, if all of the above rules fails.


All versions of validation with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wscore/validation contains the following files

Loading the files please wait ....