Download the PHP package buuum/validation without Composer
On this page you can find all versions of the php package buuum/validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download buuum/validation
More information about buuum/validation
Files in buuum/validation
Package validation
Short Description Filter and Validation data
License MIT
Homepage https://github.com/buuum/Validation
Informations about the package validation
Filter and Validation data input
Install
System Requirements
You need PHP >= 5.5.0 to use Buuum\validation but the latest stable version of PHP is recommended.
Composer
Buuum\validation is available on Packagist and can be installed using Composer:
Manually
You may use your own autoloader as long as it follows PSR-0 or PSR-4 standards. Just put src directory contents in your vendor directory.
FILTERS
- trim
Strip whitespace from the beginning and end of a string
- sanitize_string
Strip tags
- sanitizeemail `Remove all characters except letters, digits and !#$%&'*+-=?^{|}~@.[].`
- rmpunctuation
Remove all known punctuation characters from a string
- urlencode
Encode url entities
- htmlencode
Encode HTML entities
- sanitize_numbers
Remove any non-numeric characters
- tags
Remove all layout orientated HTML tags from text. Leaving only basic tags
- custom_tags
Remove HTML tags except declared
- attributes
Remove all attributes tags
- whole_number
Ensure that the provided numeric value is represented as a whole number
USE FILTER
VALIDATORS
- required
- contains
contains:word1:word2
- valid_email
- max
max:23
- min
min:3
- exact_len
exact_len:5
- max_len
max_len:23
- min_len
min_len:3
- alpha
- alpha_space
- alpha_dash
- alpha_numeric
- alpha_numeric_space
- alpha_numeric_dash
- only_alpha
- only_alpha_space
- only_alpha_dash
- only_alpha_numeric
- only_alpha_numeric_space
- only_alpha_numeric_dash
- numeric
- integer
- euqals
equals:password2
- date
date:Y-m-d
date:formatdate - groupdate
groupdate:ano:mes:dia
- url
NOTE
Group Alpha with prefix only_ = a-z without prefix = a-zÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðòóôõöùúûüýÿçÇñÑ
USE VALIDATORS
LICENSE
The MIT License (MIT)
Copyright (c) 2016
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.