Zend Framework 2.0.0beta1发布
程序员文章站
2022-03-09 17:17:20
...
Zend Framework 2 的第一个Beta 版本现身。
ZF 2 充分利用最新的 PHP5.3 中的 Namespace特性重新设计,解决了 ZF1中冗长的类名。
2.0.0beta1 中全新的组件包括:
-
全新和重构过的 autoloaders:
- Zend\Loader\StandardAutoloader
- Zend\Loader\ClassMapAutoloader
- Zend\Loader\AutoloaderFactory
-
新的插件 broker strategy
- Zend\Loader\Broker and Zend\Loader\PluginBroker
-
重新设计的异常系统
- Allow catching by specific Exception type
- Allow catching by component Exception type
- Allow catching by SPL Exception type
- Allow catching by base Exception type
- 重构过的 Session 组件
-
重构过的 View 组件
- Split helpers into a PluginBroker
- Split variables into a Variables container
- Split script paths into a TemplateResolver
- Renamed base View class "PhpRenderer"
- Refactored helpers to utilize __invoke() when possible
- 重构了 HTTP 组件
- 全新的 Zend\Cloud\Infrastructure 组件
- 全新的EventManager 组件
- 全新的Dependency Injection (Zend\Di) 组件
-
全新的 Code 组件
- Incorporates refactored versions of former Reflection and CodeGenerator components.
- Introduces Scanner component.
- Introduces annotation system.
上一篇: JPA101 样章 PDF 下载
下一篇: Seam 3.1.0 Beta 4 发布
推荐阅读
-
请问个zend_framework相关的有关问题:登录时出现这样的异常:The supplied parameters to Zend_Auth_Adapter_D
-
zend framework 框架下,没和init()对应的,在事物结束后执行XXXXX这样的办法
-
Zend Framework 2.0 (zf2) 正式版发布及新功能介绍
-
Zend Framework 入门(2)—多国语言支持
-
关于zend framework有关问题
-
ZEND FRAMEWORK怎么URL传参
-
Zend Framework动作助手FlashMessenger用法详解,zendflashmessenger_PHP教程
-
Zend Studio for Eclipse 6.1.2发布(附下载)
-
PHP Zend Framework解决方法
-
Zend Framework教程之Loader以及PluginLoader用法详解_PHP