charescape/serialize-closure
Composer 安装命令:
composer require charescape/serialize-closure
包简介
A library that can be used to serialize closures (anonymous functions) and arbitrary objects.
README 文档
README
Differences compared to the original version
- Installs as a replacement of opis/closure package, uses the same namespaces and classes
composer require charescape/serialize-closure
If you require opis/closure directly in your root composer.json, you have to remove it first
composer remove opis/closure
- Added support for PHP 8.0, 8.1, 8.2
- Fixed deprecations:
Backward Incompatible Changes
1. Serialization format and SerializableClosure class API
TLDR: You are affected ONLY if you either:
- Used
JsonSerializableClosure- Signed closures with
SerializableClosure::setSecretKey()- Extended
SerializableClosureorJsonSerializableClosureclasses
The PHP 8.1: Serializable interface deprecation
forces us to implement the __serialize(): array and __unserialize(array $data): void methods.
Since PHP 7.4, when a class gets these magic methods implemented, the Serializable::serialize(): string
and Serialize::unserialize(): void are not called anymore. Check out the following example, to understand
how the output looks with and without
the __serialize and __unserialize methods implemented.
It means we can only build the data array we want PHP to serialize to a string, but we can't build the string
ourselves to include a signature there. This is why we had to change the serialization format for
the JsonSerializableClosure class and the SerializableClosure when signature verification is enabled.
Action points, if you are affected:
- If you have serialized closures saved in your database, caches or files – you will need to re-serialize them.
- If you have extended
SerializableClosureorJsonSerializableClosureclasses, you will need to review your code and make the necessary changes.
Serializable closures
Opis Closure is a library that aims to overcome PHP's limitations regarding closure serialization by providing a wrapper that will make all closures serializable.
The library's key features:
- Serialize any closure
- Serialize arbitrary objects
- Doesn't use
evalfor closure serialization or unserialization - Works with any PHP version that has support for closures
- Supports PHP 7 syntax
- Handles all variables referenced/imported in
use()and automatically wraps all referenced/imported closures for proper serialization - Handles recursive closures
- Handles magic constants like
__FILE__,__DIR__,__LINE__,__NAMESPACE__,__CLASS__,__TRAIT__,__METHOD__and__FUNCTION__. - Automatically resolves all class names, function names and constant names used inside the closure
- Track closure's residing source by using the
#trackmedirective - Simple and very fast parser
- Any error or exception, that might occur when executing an unserialized closure, can be caught and treated properly
- You can serialize/unserialize any closure unlimited times, even those previously unserialized
(this is possible because
eval()is not used for unserialization) - Handles static closures
- Supports cryptographically signed closures
- Provides a reflector that can give you information about the serialized closure
- Provides an analyzer for SuperClosure library
- Automatically detects when the scope and/or the bound object of a closure needs to be serialized in order for the closure to work after deserialization
Documentation
The full documentation for this library can be found here.
License
Opis Closure is licensed under the MIT License (MIT).
Requirements
- PHP ^5.4 || ^7.0 || ^8.0
Installation
Opis Closure is available on Packagist and it can be installed from a command line interface by using Composer.
composer require charescape/serialize-closure
Or you could directly reference it into your composer.json file as a dependency
{
"require": {
"charescape/serialize-closure": "^3.8"
}
}
Migrating from 2.x
If your project needs to support PHP 5.3 you can continue using the 2.x version
of Opis Closure. Otherwise, assuming you are not using one of the removed/refactored classes or features(see
CHANGELOG), migrating to version 3.x is simply a matter of updating your composer.json file.
Semantic versioning
Opis Closure follows semantic versioning specifications.
Arbitrary object serialization
We've added this feature in order to be able to support the serialization of a closure's bound object.
The implementation is far from being perfect, and it's really hard to make it work flawless.
We will try to improve this, but we can't guarantee anything.
So our advice regarding the Opis\Closure\serialize|unserialize functions is to use them with caution.
charescape/serialize-closure 适用场景与选型建议
charescape/serialize-closure 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10.92k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2023 年 03 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「serialize」 「serialization」 「function」 「closure」 「serializable」 「anonymous functions」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 charescape/serialize-closure 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 charescape/serialize-closure 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 charescape/serialize-closure 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LazyPDO is a set of wrappers over PHP's standard PDO and PDOStatement classes. It enables lazy loading, serialization and decoration.
Fork of jms/serializer 1.14.1 with support for modern PHP versions.
Transform data structures
De/normalize business objects without tightly coupling them to your normalization format
PHPUnit extension to Mock PHP internal functions using Runkit.
Lightweight PHP library that allows exchanging binary data with Qt programs (QDataStream)
统计信息
- 总下载量: 10.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 38
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-19