承接 symfony/var-exporter 相关项目开发

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

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

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);
  • DeepCloner deep-clones PHP values while preserving copy-on-write benefits for strings and arrays, making it faster and more memory efficient than unserialize(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 \r or \n in the data;
  • missing classes throw a ClassNotFoundException instead of being unserialized to PHP_Incomplete_Class objects;
  • references involving SplObjectStorage, ArrayObject or ArrayIterator instances are preserved;
  • Reflection*, IteratorIterator and RecursiveIteratorIterator classes 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 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 406.44M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2110
  • 点击次数: 31
  • 依赖项目数: 473
  • 推荐数: 5

GitHub 信息

  • Stars: 2105
  • Watchers: 4
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-08-29