Download the PHP package buuum/requestcheck without Composer
On this page you can find all versions of the php package buuum/requestcheck. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download buuum/requestcheck
More information about buuum/requestcheck
Files in buuum/requestcheck
Package requestcheck
Short Description Filter and Validation data
License MIT
Homepage https://github.com/buuum/RequestCheck
Informations about the package requestcheck
Filter and Validation data input
Install
System Requirements
You need PHP >= 7.1.0 to use Buuum\RequestCheck but the latest stable version of PHP is recommended.
Composer
Buuum\RequestCheck 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.
INPUT FIELDS
INPUT
INPUTOBJECT
INPUTARRAY
HOW TO USE
FILTERS
Attributes
remove all attributes
Custom Tags
remove custom tags
- param1: allow tags
return filter email
HtmlEncode
return htmlencode data
RemovePunctuation
remove punctuation
Sanitize Number
sanitize number data
String
sanitize string data
Trim
trim data
UrlEncode
encode url
Whole Number
whole number
Date
Format date
- param1: string input_format
- param2: string output_format
Create custom filter
VALIDATORS
REQUIRED
Check if input exists
- param1: string (custom message)
Check if input is a valid email
- param1: string (custom message)
php
...
$name->setValidations([new ValidInteger()]);
Exact
Check if input value is exact to value
- param1: int value to exact
- param2: string (custom message)
Exact Length
Check if input value has the exaxt length
- param1: int length
- param2: string (custom message)
MAX
Check if input value is max
- param1: int value max
- param2: string (custom message)
MIN
Check if input value is min
- param1: int value min
- param2: string (custom message)
MAXLENGTH
Check if input value is max
- param1: int value max
- param2: string (custom message)
MINLENGTH
Check if input value is min
- param1: int value min
- param2: string (custom message)
REGEX
Check if input is valid with regex
- param1: string regex
- param2: string (custom message)
PREDEFINE REGEXS:
- NUMERIC
- ALPHA
- ALPHA_NUMERIC
- ALPHA_SPACE
- ALPHA_NUMERIC_SPACE
- SLUG
URL
Check if input is valid url
- param1: string (custom message)
Contains
Check if string contains any value of array
- param1: array
- param2: string (custom message)
Date
Check if input is a valid date
- param1: string date format
- param2: string (custom message)
LICENSE
The MIT License (MIT)
Copyright (c) 2017
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.