dashifen/validator
Composer 安装命令:
composer create-project dashifen/validator
包简介
An interface and abstract class useful for the production of objects which validate data.
README 文档
README
Here we define an interface for Validators as well as an Abstract class from which concrete objects that validate data based on field names can be built. The goal: to standardize the way that Dash creates validators in their work.
Installation
composer require dashifen/validator
Usage
You can either extend the AbstractValidator object or simply implement the AbstractInterface on your own. The interface defines two methods:
canValidate- returns a Boolean value to tell the calling scope if data can be validated based on a$fieldparameter.isValid- returns a Boolean regarding the validity of a$valuebased on its$fieldlabel.
The AbstractValidator implements both of these for you while requiring that you define a third method: a protected getValidationMethod method. It returns the name of another method that is assumed to be of the same object that can validate data labeled by $field.
Example
In this example, we're assuming that the naming convention for the application's fields is to use kebab-case.
class Validator extends AbstractValidator { protected function getValidationMethod(string $field): string { // to convert a kebab-case $field to a function name, we want to // convert it to StudlyCaps. so, first, we convert from kebab-case to // camelCase and then we ucfirst() the camelCase string to make it // studly. finally, we add the word "validate." Thus, a start-date // field becomes startDate, then StartDate, and finally we return // transformStartDate. $camelCase = preg_replace_callback("/-([a-z])/", function (array $matches): string { return strtoupper($matches[1]); }, $field); return "validate" . ucfirst($camelCase); } private function validateStartDate(string $date): bool { // what we want to do is make sure that our date appears valid. // we're less concerned with format (a transform can standardize // that). here, we just want to know that what we have might be // a date which is a good job for strtotime()! return strtotime($date) !== false; } }
The above little class represents a simple, concrete object based on the functionality of the AbstractValidator found within this repo. The abstract object's implementation of the canValidate and isValid methods of our interface make sure that we use the getValidationMethod to identify the name of a method that can transform data labeled by $field and then will call that method when we need it returning its result.
dashifen/validator 适用场景与选型建议
dashifen/validator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.92k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 09 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 dashifen/validator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dashifen/validator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 4.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-13