5ichong/validator

The data format validation.

v1.0.0 2019-06-12 05:40 UTC

This package is not auto-updated.

Last update: 2024-04-18 00:54:11 UTC


README

Build Status

Installation

To install Validator, simply:

$ composer require 5ichong/validator

For latest commit version:

$ composer require 5ichong/validator @dev

Requirements

Validator works with PHP 5.6, 7.0, 7.1.

Quick Start and Examples

require __DIR__ . '/vendor/autoload.php';

use \Aichong\Validator;

$curl = new Validator();
$validator->validate(['test' => ''], ['test' => 'required'], ['test' => 'empty']);
$validator->validate(['test' => '1'], ['test' => 'equals:1'], ['test' => 'noequals']);
$validator->validate(['test' => '123'], ['test' => 'length:3'], ['test' => 'nolength']);
$validator->validate(['test' => '15821789646'], ['test' => 'phone'], ['test' => 'nophone'])