Recommend this page to a friend! |
Classes of Gavin Gordon Markowski | User Input Validator | README.md | Download |
|
DownloadInputValidator v1.0.0PrologueQuickly define and run validation check on user data provided upon either GET or POST requests. Installation (via Composer)
Include autoloader.php
ExamplesSet RulesThe rules array contains the validation rules for each input. Each input is equal to 1 array, and, in itself, contains the rules for its own validation. The first parameter of an input's validation array is used to define the Regex pattern by which to validate its value against. The second parameter, which is also an array, is used to define the string length of the value, noted by the first parameter as a minimum length, followed by a maximum length.
Create InstanceTo instantiate the class, two arguments are required: The first argument must be a string value of either 'GET' or 'POST', and is used to determine the request type being validated. The second argument must be an array of rules, as mentioned in the above example.
Run the Validator
Determine if Validated
More InformationFeedbackIf you found this class to be at all interesting, helpful, particularly useful, or innovative in any way, check out my other PHP classes via my GitHub profile or PHPClasses.org profile. |