承接 lucatume/args 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

lucatume/args

Composer 安装命令:

composer require lucatume/args

包简介

A PHP 5.2 compatible arguments handling library.

README 文档

README

A library to make argument checking less of a chore.

Missing type hinting

PHP will not allow type hinting scalar values in functions and methods arguments forcing cycles like this to be added in each function body:

if (!is_string($s)){
    throw ...
}
if(strlen($s) > 20 || strlen($s) < 10){
    throw ...
}
if(preg_match($this->name_pattern, $s) === false){
    throw ...
}

The library, still a work in progress aims at making argument check more granular, tested and DRYer ') by introducing a fluent interface.
The check above could become

Arg::_($s)->is_string()->length(10, 20)->match($this->name_pattern);

Some array-related functions are there too:

Arg::_($a)->count(6, 10)->contains('value1', 'value2')->has_key('key_one');

Each method will throw an Exception if the condition is not satisfied. In the array example if array is ['some', 23] then an exception will be thrown with the message:

Array must contain at least 6 elements!

Installation

Download the class and add it to your project or use Composer like

require: {
    "lucatume/args": "~0.1"
}

Methods

Each call to the class should begin using the static method _() and passing it the value to check and, optionally, the name that value will be referred to in exceptions

Arg::_($value, 'amount');

To actually check the argument against a condition use the assert() method

Arg::_($value)->assert($value > 13);

While that's the base this syntax is best used in special cases the clas doesn't cover and the convenient methods provided by the class should be used.
Each method is defined in a positive logic: nothing will happen if the argument matches the expectation, an exception will be thrown otherwise.

  • is_bool() - checks if value is a boolean, same as is_bool() method
  • is_scalar() - checks if value is a scalar, same as is_scalar() method
  • is_string() - checks if value is a string, same as is_string() method
  • is_numeric() - checks if value is a numeric, same as is_numeric() method
  • is_int() - checks if value is a int, same as is_int() method
  • is_double() - checks if value is a double, same as is_double() method
  • is_float() - checks if value is a float, same as is_float() method
  • is_null() - checks if value is null, same as is_null() method
  • is_resource() - checks if value is a resource, same as is_resource() method
  • is_array() - checks if value is an array, same as is_array() method
  • is_associative_array() - checks if value is an associative array
  • is_object() - checks if value is an object, same as is_object() method
  • else_throw($exception) - throws the specified exception if the checks are failing; $exception can be an object instance or a class name. If the class name ends in Exception then that part of the class name can be omitted (e.g. "NotGoodException" to "NotGood")

Scalar methods

If an argument is a scalar then additional check methods are available:

  • at_least($value) - checks if the argument is >= the value
  • at_most($value) - checks if the argument is <= the value
  • greater_than($value) - checks if the argument is > the value
  • less_than($value) - checks if the argument is < the value

String methods

If an argument is a string then additional methods are available

  • length($min, [$max]) - checks if the argument is at least $min long and, optionally, at most $max chars long.
  • match($pattern) - checks if the argument matches the given regex patterns

Array methods

If an argument is an array then additional methods are available

  • count($min, [$max]) - checks if the argument contains at least $min elements and, optionally, that it contains at most $max elements.

  • has_structure($structure) - checks if the array has exactly the provided strcture, e.g.

    $structure = array( 'key1' => null, 'key2' => null, 'key3' => array( 'subKey1' => null, 'subKey1' => null ) );

    $structure = array( 'key1' => 'some', 'key2' => 'foo', 'key3' => array( 'subKey1' => 12, 'subKey1' => 23 ) );

    Arg::_($arr)->has_structure($structure);

  • extends_structure($structure) - checks if the array extends the provided strcture

  • defaults($defaults) - does not perform a check but merges the argument array with a default set

  • contains($value [,$value] [,$value2]) - checks if the argument contains the specified value(s)

  • has_key($value [,$value] [,$value2]) - checks if the argument contains the specified key(s)

Object methods

  • is_set($property [, $property][, $property] ) - checks if one ore more specified properties are set

lucatume/args 适用场景与选型建议

lucatume/args 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.43M 次下载、GitHub Stars 达 1, 最近一次更新时间为 2014 年 10 月 23 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 lucatume/args 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 lucatume/args 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: GPL-2.0
  • 更新时间: 2014-10-23