定制 benjaminmal/parity-checker 二次开发

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

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

benjaminmal/parity-checker

最新稳定版本:v2.0.0

Composer 安装命令:

composer require benjaminmal/parity-checker

包简介

Parity checker

README 文档

README

Continuous integration

A PHP parity checker. Useful when you want to check if many objects are having the same datas. It has many options so you can configure the behavior you need, especially speaking of object recursion.

Installation

$ composer require benjaminmal/parity-checker

Getting started

Create the Parity checker using the factory:

$parityChecker = ParityChecker::create();

Or using your implementations using Symfony PropertyAccess & PropertyInfo components

/** @var PropertyAccessorInterface $propertyAccessor */
/** @var PropertyInfoExtractorInterface $propertyInfoExtractor */

$parityChecker = new ParityChecker($propertyAccessor, $propertyInfoExtractor);

Check your objects

$errors = $parityChecker->checkParity([$object1, $object2]);
if (! $errors->hasErrors()) {
    // You're all set !
}

Usages

Options

$errors = $parityChecker->checkParity([$object1, $object2], [
    // Do not perform check on these types
    'ignore_types' => ['object', 'resource', \DateTimeInterface::class, '$objectProperty1'],
    
    // Perform check only on these types
    'only_types' => ['string', 'float'],

    // Perform a loose check ('==' instead of '===') on theses types
    'loose_types' => 'array',

    // Set the recursion limit for objects
    'deep_object_limit' => 0,
    
    // Set DateTime format to check
    'datetime_check_format' => false,
    
    // Set DateInterval format to check
    'date_interval_format' => '%R %Y %M %D %H %I %S %F',
    
    // Set DateTime zone mapping to name
    'datetime_zone' => true,
    
    // Set a data mapper closure
    'data_mapper' => [
        'my-mapper' => new ParityCheckerCallback(
            'array',
            fn ($value, string $property, array $options): mixed => $value['something'],
        ),
    ],
    
    // Custom checkers. You can set you own checker which replace other.
    'custom_checkers' => [
        'my-checker' => new ParityCheckerCallback(
            ['$property'],
            fn ($value1, $value2, string $property, array $options): bool => true,
        ),
    ],
]);
Option Description Accepted types Default values
ignore_types Do not perform check on these types string[]|string. Can be any types. Checked by the is_ functions, classes/interfaces names or object properties (must be prefixed by $) object
only_types Perform checks only on these types. ignore_types is evaluated before, so if you set the same type in both ignore_types and only_types, the type will be ignored. string[]|string. Can be any types. Checked by the is_ functions, classes/interfaces names or object properties (must be prefixed by $) none
loose_types On which type to perform loose check (==) instead of (===) string[]|string. Can be any types. Checked by the is_ functions, classes/interfaces names or object properties (must be prefixed by $) none
deep_object_limit The object recursion limit int 0
data_mapper Replace value before checking by your closure ParityCheckCallbackInterface[] datetime_check_format, date_interval_format, datetime_zone mappers
datetime_check_format The format that DateTime must be check with bool|string. Has to be a valid DateTime format. If it's true, Y-m-d H:i:s is used. true
date_interval_format The format that DateInterval must be check with bool|string. Has to be a valid DateInterval format. If it's true, %R %Y %M %D %H %I %S %F is used. true
datetime_zone Map DateTimeZone objects to its timezone name in order to check it. E.g Europe/Paris bool true
custom_checkers You can set you own checker which replace other ParityCheckCallbackInterface[] none

Errors

$errors = $parityChecker->checkParity([$object1, $object2], $options);

if ($errors->hasError()) {
    foreach ($errors as $error) {
        $property = $error->getProperty();
        $object1 = $error->getObject1();
        $object2 = $error->getObject2();

        $errorValue1 = $error->getObject1Value();
        $errorValue2 = $error->getObject2Value();
    }
}

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

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

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固