symfony/var-exporter
Composer 安装命令:
composer require symfony/var-exporter
包简介
Provides tools to export, instantiate, hydrate, clone and lazy-load PHP objects
README 文档
README
The VarExporter component provides various tools to deal with the internal state of objects:
VarExporter::export()allows exporting any serializable PHP data structure to plain PHP code. While doing so, it preserves all the semantics associated with the serialization mechanism of PHP (__wakeup,__sleep,Serializable,__serialize,__unserialize);DeepClonerdeep-clones PHP values while preserving copy-on-write benefits for strings and arrays, making it faster and more memory efficient thanunserialize(serialize());ProxyHelper::generateLazyProxy()generates lazy-loading decorators for abstract or internal classes and for interfaces (use native lazy objects for regular concrete classes).
The component depends on the native ext-deepclone
extension for maximum performance, or on its polyfill
as a fallback. In addition to functions deepclone_to_array() and deepclone_from_array()
which are leveraged by DeepCloner and VarExporter::export(), the extension
provides a deepclone_hydrate() function that lets you instantiate / hydrate objects
without calling their constructor, including private, protected and readonly properties.
VarExporter::export()
The reason to use VarExporter::export() vs serialize() or
igbinary is performance: thanks to
OPcache, the resulting code is significantly faster and more memory efficient
than using unserialize() or igbinary_unserialize().
Unlike var_export(), this works on any serializable PHP value.
It also provides a few improvements over var_export()/serialize():
- the output is PSR-2 compatible;
- the output can be re-indented without messing up with
\ror\nin the data; - missing classes throw a
ClassNotFoundExceptioninstead of being unserialized toPHP_Incomplete_Classobjects; - references involving
SplObjectStorage,ArrayObjectorArrayIteratorinstances are preserved; Reflection*,IteratorIteratorandRecursiveIteratorIteratorclasses throw an exception when being serialized (their unserialized version is broken anyway, see https://bugs.php.net/76737).
DeepCloner
DeepCloner::deepClone() deep-clones a PHP value. Unlike
unserialize(serialize()), it preserves PHP's copy-on-write semantics for
strings and arrays, resulting in lower memory usage and better performance:
$clone = DeepCloner::deepClone($originalObject);
For repeated cloning of the same structure, create an instance to amortize the cost of graph analysis:
$cloner = new DeepCloner($prototype); $clone1 = $cloner->clone(); $clone2 = $cloner->clone();
Lazy Proxies
Since version 8.4, PHP provides support for lazy objects via the reflection API. This native API works with concrete classes. It doesn't with abstracts nor with internal ones.
This components provides helpers to generate lazy objects using the decorator pattern, which works with abstract or internal classes and with interfaces:
$proxyCode = ProxyHelper::generateLazyProxy(new ReflectionClass(AbstractFoo::class)); // $proxyCode should be dumped into a file in production envs eval('class FooLazyProxy'.$proxyCode); $foo = FooLazyProxy::createLazyProxy(initializer: function (): AbstractFoo { // [...] Use whatever heavy logic you need here // to compute the $dependencies of the $instance $instance = new Foo(...$dependencies); // [...] Call setters, etc. if needed return $instance; }); // $foo is now a lazy-loading decorator object. The initializer will // be called only when and if a *method* is called.
Sponsor
This package is looking for a backer.
Help Symfony by sponsoring its development!
Resources
symfony/var-exporter 适用场景与选型建议
symfony/var-exporter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 406.44M 次下载、GitHub Stars 达 2.11k, 最近一次更新时间为 2018 年 08 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「serialize」 「proxy」 「export」 「clone」 「instantiate」 「construct」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 symfony/var-exporter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 symfony/var-exporter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 symfony/var-exporter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Lazy loading for middleware and request handlers
LazyPDO is a set of wrappers over PHP's standard PDO and PDOStatement classes. It enables lazy loading, serialization and decoration.
Bulk export of sylius resources
Transform data structures
Lightweight PHP library that allows exchanging binary data with Qt programs (QDataStream)
Runn Me! Serialization Library
统计信息
- 总下载量: 406.44M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2110
- 点击次数: 31
- 依赖项目数: 473
- 推荐数: 5
其他信息
- 授权协议: MIT
- 更新时间: 2018-08-29