zend-framework - php如何序列化/存储闭包(Closure)
在最新的Zend Framework 2.0中,已经开始大量采用php5.3的闭包特性。可以通过在配置文件中引入闭包来初始化模块。(参看:http://packages.zendframework.com/doc...)
但是配置文件会存在缓存,格式转换等需求(php => xml),此时对于配置文件内的闭包应该如何处理? 直接序列化闭包php并不支持。
回复内容:
在最新的Zend Framework 2.0中,已经开始大量采用php5.3的闭包特性。可以通过在配置文件中引入闭包来初始化模块。(参看:http://packages.zendframework.com/doc...)
但是配置文件会存在缓存,格式转换等需求(php => xml),此时对于配置文件内的闭包应该如何处理? 直接序列化闭包php并不支持。
没用过Zend,不过我想ZF2只不过是简单的把闭包函数的代码复制到不同格式的配置文件里,最后肯定都是要重新写回到PHP代码格式的缓存(可以直接运行),不然运行时去解析配置文件,效率太差。
实在需要序列化,可以用反射(Reflection),并直接操作代码文件获得上下文信息:
/** * 创建一个反射: */ $reflection = new ReflectionFunction($closure); /** * 参数可以直接得到了: */ $params = $reflection->getParameters(); /** * 获得Closure的函数体和use变量,形如: * function($arg1, $arg2, ...) use ($val1, $val2, ...) { * // 要获得这个部分的代码! * } * 办法很多,你可以直接用正则、字符串查找或者Tokenizer,等等等等。 * 比如可以先从reflection里得到函数的开始行和结束行: */ $startLine = $reflection->getStartLine(); $endLine = $reflection->getEndLine(); // 然后用str*这个,str*那个的函数来清理,细节不写了: $usedVars = use变量们; $closureBody = 函数体; // ...
至此params,usedVars,closureBody等等只是数组和字符串了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
