geofmureithi/f3-validate
Composer 安装命令:
composer require geofmureithi/f3-validate
包简介
A validation lib for Fat Free Framework
README 文档
README
An easy to use and strait to the point validation trait for Fat Free Framework
Installation
Using Composer
composer require geofmureithi/f3-validate
Manually
Copy the lib\validate.php file to the lib folder or any root of an auto included folder.
Remember it requires at least php 5.4 to use traits
Getting Started
class Profile { use Validate; //<--- Trait public function getRules() { return [ "email" => "reqired|email" ]; } public function save() { //..... } } $data = $f3->get('POST') $profile = new Profile(); $result = $profile->check($data); if( $result != true) return $result; //errors $profile->save();
Available Validators
- required
Ensures the specified key value exists and is not empty - email
Checks for a valid email address - max_length,n
Checks key value length, makes sure it's not longer than the specified length. n = length parameter. - min_length,n
Checks key value length, makes sure it's not shorter than the specified length. n = length parameter. - exact_length,n
Ensures that the key value length precisely matches the specified length. n = length parameter. - alpha
Ensure only alpha characters are present in the key value (a-z, A-Z) - alpha_numeric
Ensure only alpha-numeric characters are present in the key value (a-z, A-Z, 0-9) - numeric
Ensure only numeric key values - boolean
Checks for PHP accepted boolean values, returns TRUE for "1", "true", "on" and "yes" - url
Check for valid URL or subdomain - ipv4
Check for valid IPv4 address - ipv6
Check for valid IPv6 address - card
Check for a valid credit card number (Uses the MOD10 Checksum Algorithm) - phone
Validate phone numbers that match the following examples: 555-555-5555 , 5555425555, 555 555 5555, 1(519) 555-4444, 1 (519) 555-4422, 1-555-555-5555 - regex
You can pass a custom regex using the following format: 'regex,/your-regex/'
Adding custom validators and filters is made easy by using callback functions.
$message = "The value of {0} must include each of these items : {1}"; Validate::addValidator("contains", function ($value, $ruleConfigs) { $required = explode("&", substr($ruleConfigs[0], 1, -1)); $diff = array_diff($required, explode(",", $value)); return empty($diff); }, $message); //Or Validate::addValidator("custom", "SampleClass::testCustom", "Custom Error");
RoadMap
- Add Tests and Travis
- Convert to Trait
- Use Audit and make Lib more lightweight
- Allow Translations
- Add Composer
- Add detailed Examples
Development
Tests are run using PHPUnit
./vendor/bin/phpunit --bootstrap vendor/autoload.php --testdox tests
Examples
See the tests folder for now
Contributing
Feel free to Create a PR
geofmureithi/f3-validate 适用场景与选型建议
geofmureithi/f3-validate 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 349 次下载、GitHub Stars 达 29, 最近一次更新时间为 2018 年 09 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 geofmureithi/f3-validate 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 geofmureithi/f3-validate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 349
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 29
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-09