本文实例讲述了Zend Framework教程之Application用法。分享给大家供大家参考,具体如下:
Zend_Application是Zend Framework的核心组件。Zend_Application为Zend Framework应用程序提供基本功能,是程序的入口点。它的主要功能有两个:装载配置PHP环境(包括自动加载),并引导应用程序。
通常情况下,通过配置选项配置Zend_Application构造器,但也可以完全使用自定义方法配置。以下是两个使用用例。
Zend_Application配置选项
构造函数:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/**
* 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的方法
Method | Return Value | Parameters | Description |
---|---|---|---|
__construct( $environment, $options = null) |
Void |
|
构造函数。 用于初始化配置对象。 实例化Zend_Loader_Autoloader。 通过传递给构造函数选项然后传递给setOptions()方法。 |
getEnvironment() | String | N/A |
获取环境配置 |
getAutoloader() | Zend_Loader_Autoloader | N/A |
获取Zend_Loader_Autoloader实例 |
setOptions(array $options) | Zend_Application |
|
所有选项都存储在引用内部,并多次调用该方法来合并选项。 会根据选项生产对于的setter方法。 例如,选项“phpSettings”对应setPhpSettings()。 (选项名称不区分大小写。) |
getOptions() | Array | N/A | |
hasOption($key) | Boolean |
|
key不区分大小写。 |
getOption($key) | Mixed |
|
key不区分大小写。如果不存在返回NULL |
setPhpSettings(array $settings, $prefix = '') | Zend_Application |
|
|
setAutoloaderNamespaces(array $namespaces) | Zend_Application |
|
|
setBootstrap($path, $class = null) | Zend_Application |
|
|
getBootstrap() | NULL|Zend_Application_Bootstrap_Bootstrapper | N/A |
获取注册的bootstrap实例. |
bootstrap() | Void | N/A |
调用 bootstrap的bootstrap()引导应用. |
run() | Void | N/A |
调用bootstrap的run()运行应用 |
配置举例:
默认:
1
2
3
4
5
6
7
|
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application ->bootstrap()
->run();
|
源代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|