-
Notifications
You must be signed in to change notification settings - Fork 16
/
step10.php
395 lines (355 loc) · 8.96 KB
/
step10.php
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<?php
class Bim
{
public function doSomething()
{
echo __METHOD__, '|';
}
}
class Bar
{
private $bim;
public function __construct(Bim $bim)
{
$this->bim = $bim;
}
public function doSomething()
{
$this->bim->doSomething();
echo __METHOD__, '|';
}
}
class Foo
{
private $bar;
public function __construct(Bar $bar)
{
$this->bar = $bar;
}
public function doSomething()
{
$this->bar->doSomething();
echo __METHOD__;
}
}
class Container
{
private $s = array();
public function __set($k, $c)
{
$this->s[$k] = $c;
}
public function __get($k)
{
// return $this->s[$k]($this);
return $this->build($this->s[$k]);
}
public function getS () {
return $this->s;
}
/**
* 自动绑定(Autowiring)自动解析(Automatic Resolution)
*
* @param string $className
* @return object
* @throws Exception
*/
public function build($className, $flag = false)
{
echo "\n\n";
echo "--------------------处理{$className}--------------------------------------------------------------------------\n";
if ($flag) {
echo "递归解析{$className}\n";
} else {
echo "非递归解析{$className}\n";
}
// 如果是匿名函数(Anonymous functions),也叫闭包函数(closures)
echo "显示是否是instanceof Closure\n";
var_dump($className instanceof Closure);
if ($className instanceof Closure) {
// 执行闭包函数,并将结果
return $className($this);
}
/** @var ReflectionClass $reflector */
$reflector = new ReflectionClass($className);
echo "显示ReflectionClass\n";
var_dump($reflector);
// 检查类是否可实例化, 排除抽象类abstract和对象接口interface
echo "检查类是否可实例化, 排除抽象类abstract和对象接口interface\n";
var_dump($reflector->isInstantiable());
if (!$reflector->isInstantiable()) {
throw new Exception("Can't instantiate this.");
}
/** @var ReflectionMethod $constructor 获取类的构造函数 */
$constructor = $reflector->getConstructor();
echo "获取类的构造函数\n";
var_dump($constructor);
// 若无构造函数,直接实例化并返回
if (is_null($constructor)) {
echo "若无构造函数,直接实例化并返回\n";
$o = new $className;
var_dump($o);
return $o;
}
// 取构造函数参数,通过 ReflectionParameter 数组返回参数列表
$parameters = $constructor->getParameters();
echo "取构造函数参数,通过 ReflectionParameter 数组返回参数列表\n";
var_dump($parameters);
// 递归解析构造函数的参数
echo "<<<<开始>>>>递归解析构造函数的参数\n";
$dependencies = $this->getDependencies($parameters);
echo "递归结束\n";
var_dump($dependencies);
// 创建一个类的新实例,给出的参数将传递到类的构造函数。
echo "创建一个类的新实例,给出的参数将传递到类的构造函数\n";
$b = $reflector->newInstanceArgs($dependencies);
var_dump($b);
return $b;
}
/**
* @param array $parameters
* @return array
* @throws Exception
*/
public function getDependencies($parameters)
{
echo "--------在方法getDependencies中--------\n";
echo "显示参数\n";
var_dump($parameters);
$dependencies = [];
/** @var ReflectionParameter $parameter */
echo "进入循环\n";
foreach ($parameters as $parameter) {
var_dump($parameter);
/** @var ReflectionClass $dependency */
$dependency = $parameter->getClass();
var_dump($dependency);
var_dump(is_null($dependency));
if (is_null($dependency)) {
// 是变量,有默认值则设置默认值
echo "是变量,有默认值则设置默认值\n";
$dependencies[] = $this->resolveNonClass($parameter);
} else {
// 是一个类,递归解析
echo "是一个类,递归解析\n";
$dependencies[] = $this->build($dependency->name, true);
}
}
echo "方法getDependencies结束\n";
echo "返回值\n";
var_dump($dependencies);
return $dependencies;
}
/**
* @param ReflectionParameter $parameter
* @return mixed
* @throws Exception
*/
public function resolveNonClass($parameter)
{
// 有默认值则返回默认值
if ($parameter->isDefaultValueAvailable()) {
return $parameter->getDefaultValue();
}
throw new Exception('I have no idea what to do here.');
}
}
// ----
$di = new Container();
$di->foo = 'Foo';
//print_r($di->getS());
/*
* Array
(
[foo] => Foo
)
*
*/
/** @var Foo $foo */
$foo = $di->foo;
echo "\n\n\n";
var_dump($foo);
/*
object(Foo)#5 (1) {
["bar":"Foo":private]=>
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
}
*/
echo "整个处理结束\n";
$foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething
echo "\n\n";
/*
ubuntu@huzhi:~/webroot/www/MailEye/Shell$ php step10.php
--------------------处理Foo--------------------------------------------------------------------------
非递归解析Foo
显示是否是instanceof Closure
bool(false)
显示ReflectionClass
object(ReflectionClass)#2 (1) {
["name"]=>
string(3) "Foo"
}
检查类是否可实例化, 排除抽象类abstract和对象接口interface
bool(true)
获取类的构造函数
object(ReflectionMethod)#3 (2) {
["name"]=>
string(11) "__construct"
["class"]=>
string(3) "Foo"
}
取构造函数参数,通过 ReflectionParameter 数组返回参数列表
array(1) {
[0]=>
&object(ReflectionParameter)#4 (1) {
["name"]=>
string(3) "bar"
}
}
<<<<开始>>>>递归解析构造函数的参数
--------在方法getDependencies中--------
显示参数
array(1) {
[0]=>
&object(ReflectionParameter)#4 (1) {
["name"]=>
string(3) "bar"
}
}
进入循环
object(ReflectionParameter)#4 (1) {
["name"]=>
string(3) "bar"
}
object(ReflectionClass)#5 (1) {
["name"]=>
string(3) "Bar"
}
bool(false)
是一个类,递归解析
--------------------处理Bar--------------------------------------------------------------------------
递归解析Bar
显示是否是instanceof Closure
bool(false)
显示ReflectionClass
object(ReflectionClass)#6 (1) {
["name"]=>
string(3) "Bar"
}
检查类是否可实例化, 排除抽象类abstract和对象接口interface
bool(true)
获取类的构造函数
object(ReflectionMethod)#7 (2) {
["name"]=>
string(11) "__construct"
["class"]=>
string(3) "Bar"
}
取构造函数参数,通过 ReflectionParameter 数组返回参数列表
array(1) {
[0]=>
&object(ReflectionParameter)#8 (1) {
["name"]=>
string(3) "bim"
}
}
<<<<开始>>>>递归解析构造函数的参数
--------在方法getDependencies中--------
显示参数
array(1) {
[0]=>
&object(ReflectionParameter)#8 (1) {
["name"]=>
string(3) "bim"
}
}
进入循环
object(ReflectionParameter)#8 (1) {
["name"]=>
string(3) "bim"
}
object(ReflectionClass)#9 (1) {
["name"]=>
string(3) "Bim"
}
bool(false)
是一个类,递归解析
--------------------处理Bim--------------------------------------------------------------------------
递归解析Bim
显示是否是instanceof Closure
bool(false)
显示ReflectionClass
object(ReflectionClass)#10 (1) {
["name"]=>
string(3) "Bim"
}
检查类是否可实例化, 排除抽象类abstract和对象接口interface
bool(true)
获取类的构造函数
NULL
若无构造函数,直接实例化并返回
object(Bim)#11 (0) {
}
方法getDependencies结束
返回值
array(1) {
[0]=>
object(Bim)#11 (0) {
}
}
递归结束
array(1) {
[0]=>
object(Bim)#11 (0) {
}
}
创建一个类的新实例,给出的参数将传递到类的构造函数
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
方法getDependencies结束
返回值
array(1) {
[0]=>
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
}
递归结束
array(1) {
[0]=>
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
}
创建一个类的新实例,给出的参数将传递到类的构造函数
object(Foo)#5 (1) {
["bar":"Foo":private]=>
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
}
object(Foo)#5 (1) {
["bar":"Foo":private]=>
object(Bar)#9 (1) {
["bim":"Bar":private]=>
object(Bim)#11 (0) {
}
}
}
整个处理结束
Bim::doSomething|Bar::doSomething|Foo::doSomething
ubuntu@huzhi:~/webroot/www/MailEye/Shell$
*/