wyrfel/php-callback
Composer 安装命令:
composer require wyrfel/php-callback
包简介
A simple callable wrapper that allows better management of call parameters
README 文档
README
php-callback
This is a simple callable helper that allows better control over the call parameters on the final call.
Concepts
As opposed to an immediate function call, that accepts one set of parameters, when passing a callback, there are two occasions at which parameters may be passed - once at the time the callback is created/passed, the other at the time of the call.
We will call the former the instantiation arguments as they are passed at the time of the instantiation of the callback helper - and we'll call the latter the invocation arguments as they are passed at the time of invocation of the callback.
With a regular php callable, parameters can only be passed at the time of
the call. An exception is the array_walk built-in that allows the
specification of a userdata parameter when passing the callback that is
then appended to the call parameters at the time of the call.
This helper does the same thing, but with a few more capabilities.
When there are two sets of parameters, but the callable can of course only accept one set of parameters, the question arises how to merge the two sets into one. This helper is configurable to
- append the invocation arguments to the instantiation arguments
$callable(A1, A2, A3, B1, B2) - prepend the invocation arguments to the instantiation arguments
$callable(B1, B2, A1, A2, A3) - ignore the invocation arguments altogether
$callable(A1, A2, A3) - override the instantiation arguments with the invocation arguments
based on position
$callable(B1, B2, A3)
(with An begin the instantiation arguments an Bn being the invocation arguments)
Usage
$callback = new Callback([$this, 'methodName'], $withThis, $andThat); $callback->appendInvocationArguments(); $callback->prependInvocationArguments(); $callback->ignoreInvocationArguments(); $callback->overrideInstantiationArguments(); preg_replace_callback($regexp, $callback, $subject);
wyrfel/php-callback 适用场景与选型建议
wyrfel/php-callback 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.3k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 12 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 wyrfel/php-callback 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wyrfel/php-callback 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 7.3k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-12-20