ThinkPHP中initialize()和construct()這兩個函數都可以理解為建構函數,前面一個是tp框架獨有的,後面的是php建構函數,那麼這兩個有什麼不同呢?
在網路上搜索,很多答案是兩者是一樣的,ThinkPHP中initialize相當於php的construct,這麼說是錯誤的,如果這樣,tp為什麼不用construct,而要自己弄一個ThinkPHP版的initialize建構函數呢?
相關學習推薦:thinkphp
#自己試試看就知道兩者的不同了。
a.php class a{ function __construct(){ echo 'a'; } }
b.php(注意:這裡建構子沒有呼叫parent::__construct();)
include 'a.php'; class b extends a{ function __construct(){ echo 'b'; } } $test=new b();
運行結果:
b
可見,雖然b類繼承了a類,但是輸出結果證明程式只是執行了b類的建構函數,而沒有自動執行父類的建構子。
如果b.php的建構子加上parent::__construct()
,就不同了。
include 'a.php'; class b extends a{ function __construct(){ parent::__construct(); echo 'b'; } } $test=new b();
那麼輸出結果是:
#ab
此時才執行了父類別的建構子。
我們再來看看thinkphp的initialize()函數。
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的差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!