定制 geofmureithi/f3-validate 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

Build Status

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 我们能提供哪些服务?
定制开发 / 二次开发

基于 geofmureithi/f3-validate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 349
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 29
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 29
  • Watchers: 5
  • Forks: 12
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-09-09