deskola/simple-validator
Composer 安装命令:
composer require deskola/simple-validator
包简介
This is a simple validator library adapted from https://www.phptutorial.net/php-tutorial/
README 文档
README
What is it?
A PHP library for sanitizing and validating user inputs. This library is based on https://www.phptutorial.net/ tutorial on how to make a custom input validator form scratch.
- Installation
- Supported input types
- Usage
Installation
PHP versions 7.1 up to PHP 8.1 are currently supported.
The PECL mbstring extension is required.
It is recommended to use composer to install the library.
composer require deskola/simple-validator
You can also use any other PSR-4 compliant autoloader.
If you do not use composer, ensure that you also load any dependencies that this project has, such as giggsey/locale.
Supported input types
Below is the list of data type which will be sanitized against. Any data type not in the list will be result into an error
- string
- int
- float
- url
Supported Rules
Below are the rule that can be passed against an input
| Rule | Rule name | Parameter | Meaning | |
|---|---|---|---|---|
| required | required | No | The field is set and not empty | |
| alphanumeric | alphanumeric | No | The field only contains letters and numbers | |
| No | The field is a valid email address | |||
| secure | secure | No | The field must have between 8 and 64 characters and contain at least one number, one upper case letter, one lower case letter, and one special character. This rule is for the password field. example (!@#$%^&*+_) | |
| min: 3 | min | An integer specifies the minimum length of the field | The length of the field must be greater than or equal to min length, e.g., 3 | |
| max: 255 | max | An integer specifies the maximum length of the field | The length of the field must be less than or equal to min length, e.g., 255 | |
| same: another_field | same | The name of another field | The field value must be the same as the value of the another_field | |
| between: min, max | between | min and max are integers that specify the minimum and maximum length of the field | The length of the field must be between min and max. | |
| url | url | No | The field must have a valid url starting with (http/https://) | |
| iso:KE | iso | A string value of country ISO Name e.g. KE (for Kenya) | This library also utilises giggsey library to validate phone number based on a country ISO Name | |
| options:1,2 | options | comma separated list of items being validated against | ||
Usage
require_once 'vendor/autoload.php'; $validation = new Deskola\SimpleValidator\InputFilter(); $data = [ 'name' => 'Doe', 'email' => 'john@email.com', 'phone' => '2547********' ]; $iso = "KE"; $fields = [ 'name' => "string| required | max: 3", 'email' => 'email| required | email', 'phone' => 'string| required | iso:KE' ]; $response = $validation->filter($data, $fields); print_r($response);
Success Output
Array
(
)
Error Output
Array ( [name] => The name must have at most 3 characters [email] => The email is not a valid email address [phone] => The phone must be a valid phone number )
deskola/simple-validator 适用场景与选型建议
deskola/simple-validator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.03k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 06 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 deskola/simple-validator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 deskola/simple-validator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-06-20