本文实例讲述了Zend Framework教程之Application用法。分享给大家供大家参考,具体如下:
Zend_Application是Zend Framework的核心组件。Zend_Application为Zend Framework应用程序提供基本功能,是程序的入口点。它的主要功能有两个:装载配置PHP环境(包括自动加载),并引导应用程序。
通常情况下,通过配置选项配置Zend_Application构造器,但也可以完全使用自定义方法配置。以下是两个使用用例。
Zend_Application配置选项
构造函数:
/** * Constructor * * Initialize application. Potentially initializes include_paths, PHP * settings, and bootstrap class. * * @param string $environment * @param string|array|Zend_Config $options String path to configuration file, or array/Zend_Config of configuration options * @throws Zend_Application_Exception When invalid options are provided * @return void */ public function __construct($environment, $options = null) { $this->_environment = (string) $environment; require_once 'Zend/Loader/Autoloader.php'; $this->_autoloader = Zend_Loader_Autoloader::getInstance(); if (null !== $options) { if (is_string($options)) { $options = $this->_loadConfig($options); } elseif ($options instanceof Zend_Config) { $options = $options->toArray(); } elseif (!is_array($options)) { throw new Zend_Application_Exception('Invalid options provided; must be location of config file, a config object, or an array'); } $this->setOptions($options); } }
Zend_Application配置方法
1.使用配置文件
2.使用配置数组
常见配置选项
Option
Description
phpSettings
用于配置php.ini选项,要求是数组,数组的键应该是选项的的key.
includePaths把附加的路径加入到include_path,要求是数组
autoloaderNamespaces给Zend_Loader_Autoloader注册附加命名空间,为数组
bootstrap可以是设置bootstrap引导类的路径的字符串,也可以是数组,数组元素要求为 'path' 和 'class'
注意:
选项名称不区分大小写。
Zend_Application的方法
$environment,
$options = null) Void
-
$environment: 必填。 表示当前应用环境的String。
典型的字符串可能包括 "development", "testing", "qa", or "production",他们必须已经被定义。
对应于配置文件文件中相关章节。
-
$options: 可选的,参数类型可能是:
-
String : 指定Zend_Config 文件的配置路径. $environment 用于指定配置文件的哪一个章节
从1.10开始,可以设置多个配置文件路径,然后会被合并成一个单一的配置文件。
这样更灵活,便于重用。
在这种情况下的key是"config",其值是文件路径数组。
注:可以是路径字符串,或 array("config"=>array("/path1","/path2"[,...]));.
-
Array : 配置应用的关联数组
-
Zend_Config:配置对象的实例
-
构造函数。 用于初始化配置对象。 实例化Zend_Loader_Autoloader。
通过传递给构造函数选项然后传递给setOptions()方法。
getEnvironment() String N/A获取环境配置
getAutoloader() Zend_Loader_Autoloader N/A获取Zend_Loader_Autoloader实例
setOptions(array $options) Zend_Application-
$options: 必填,要求是数组
所有选项都存储在引用内部,并多次调用该方法来合并选项。
会根据选项生产对于的setter方法。
例如,选项“phpSettings”对应setPhpSettings()。
(选项名称不区分大小写。)
getOptions() Array N/A
-
$key: 判断是发有指定的配置
key不区分大小写。
getOption($key) Mixed-
$key: 获取指定的配置选项的值
key不区分大小写。如果不存在返回 NULL
setPhpSettings(array $settings, $prefix = '') Zend_Application-
$settings: 比填.PHP INI 的配置关联数组.
-
$prefix: 可选. 为选项添加前缀
-
$namespaces: 必填.
传递命名空间字符串数组,通过Zend_Loader_Autoloader实例注册
-
$path: 必填.
可能是Zend_Application_Bootstrap_Bootstrapper实例,
自举类路径字符串,
格式为classname => filename的关联数组,
或key为“class”和value为“path”的关联数组。
-
$class: 可选. 如果 $path 是字符串, $class 类名称
获取注册的bootstrap实例.
bootstrap() Void N/A调用 bootstrap的bootstrap() 引导应用.
run() Void N/A调用bootstrap的 run()运行应用
配置举例:
默认:
// Create application, bootstrap, and run $application = new Zend_Application( APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini' ); $application->bootstrap() ->run();
源代码
<".$suffix"), PATHINFO_EXTENSION) : $suffix; switch (strtolower($suffix)) { case 'ini': $config = new Zend_Config_Ini($file, $environment); break; case 'xml': $config = new Zend_Config_Xml($file, $environment); break; case 'json': $config = new Zend_Config_Json($file, $environment); break; case 'yaml': case 'yml': $config = new Zend_Config_Yaml($file, $environment); break; case 'php': case 'inc': $config = include $file; if (!is_array($config)) { throw new Zend_Application_Exception('Invalid configuration file provided; PHP file does not return array value'); } return $config; break; default: throw new Zend_Application_Exception('Invalid configuration file provided; unknown config type'); } return $config->toArray(); } }
更多关于zend相关内容感兴趣的读者可查看本站专题:《Zend FrameWork框架入门教程》、《php优秀开发框架总结》、《Yii框架入门及常用技巧总结》、《ThinkPHP入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。