ThinkPHP中initialize()和construct()这两个函数都可以理解为构造函数,前面一个是tp框架独有的,后面的是php构造函数,那么这两个有什么不同呢?
在网上搜索,很多答案是两者是一样的,ThinkPHP中initialize相当于php的construct,这么说是错误的,如果这样,tp为什么不用construct,而要自己弄一个ThinkPHP版的initialize构造函数呢?
自己试一下就知道两者的不同了。
1
2
3
4
5
6
7
8
9
10
11
|
a.php
class a{
function __construct(){
echo 'a' ;
}
}
|
b.php(注意:这里构造函数没有调用parent::__construct();)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include 'a.php' ;
class b extends a{
function __construct(){
echo 'b' ;
}
}
$test = new b();
|
运行结果:
b
可见,虽然b类继承了a类,但是输出结果证明程序只是执行了b类的构造函数,而没有自动执行父类的构造函数。
如果b.php的构造函数加上parent::__construct(),就不同了。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include 'a.php' ;
class b extends a{
function __construct(){
parent::__construct();
echo 'b' ;
}
}
$test = new b();
|
那么输出结果是:
ab
此时才执行了父类的构造函数。
我们再来看看thinkphp的initialize()函数。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
BaseAction. class .php
class BaseAction extends Action{
public function _initialize(){
echo 'baseAction' ;
}
IndexAction. class .php
class IndexAction extends BaseAction{
public function (){
echo 'indexAction' ;
}
|
运行Index下的index方法,输出结果:
baseActionindexAcition
可见,子类的_initialize方法自动调用父类的_initialize方法。而php的构造函数construct,如果要调用父类的方法,必须在子类构造函数显示调用parent::__construct();
这就是ThinkPHP中initialize和construct的不同。
以上这篇浅谈ThinkPHP中initialize和construct的区别就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。