__construct()和__initialize()

ThinkPHP中的__initialize()和類的構造函數__construct()
網上有不少關於__initialize()的說法和用法,總感受不對頭,因此本身測試了一下。將結果和你們分享。不對請更正。
首先,我要說的是
一、__initialize()不是php類中的函數,php類的構造函數只有__construct().
二、類的初始化:子類若是有本身的構造函數(__construct()),則調用本身的進行初始化,若是沒有,則調用父類的構造函數進行本身的初始化。
三、當子類和父類都有__construct()函數的時候,若是要在初始化子類的時候同時調用父類的__constrcut(),則能夠在子類中使用parent::__construct().
若是咱們寫兩個類,以下php

  1. class Action{
  2.     public function __construct()
  3.     {
  4.         echo 'hello Action';
  5.     }
  6.  }
  7.  class IndexAction extends Action{
  8.     public function __construct()
  9.     {
  10.         echo 'hello IndexAction';
  11.     }
  12.  }
  13. $test = new IndexAction;
  14.  //output --- hello IndexAction
複製代碼

很明顯初始化子類IndexAction的時候會調用本身的構造器,因此輸出是'hello IndexAction'。
可是將子類修改成html

  1. class IndexAction extends Action{
  2.     public function __initialize()
  3.     {
  4.         echo 'hello IndexAction';
  5.     }
  6.  }
複製代碼

那麼輸出的是'hello Action'。由於子類IndexAction沒有本身的構造器。
若是我想在初始化子類的時候,同時調用父類的構造器呢?程序員

  1. class IndexAction extends Action{
  2.     public function __construct()
  3.     {
  4.         parent::__construct();
  5.         echo 'hello IndexAction';
  6.     }
  7.  }
複製代碼

這樣就能夠將兩句話同時輸出。
固然還有一種辦法就是在父類中調用子類的方法。thinkphp

  1. class Action{
  2.     public function __construct()
  3.     {
  4.         if(method_exists($this,'hello'))
  5.         {
  6.             $this -> hello();
  7.         }
  8.         echo 'hello Action';
  9.     }
  10.  }
  11.  class IndexAction extends Action{
  12.     public function hello()
  13.     {
  14.         echo 'hello IndexAction';
  15.     }
  16.  }
複製代碼

這樣也能夠將兩句話同時輸出。
而,這裏子類中的方法hello()就相似於ThinkPHP中__initialize()。
因此,ThinkPHP中的__initialize()的出現只是方便程序員在寫子類的時候避免頻繁的使用parent::__construct(),同時正確的調用框架內父類的構造器,因此,咱們在ThnikPHP中初始化子類的時候要用__initialize(),而不用__construct(),固然你也能夠經過修改框架將__initialize()函數修改成你喜歡的函數名。框架

 

 

http://www.thinkphp.cn/code/367.html函數

相關文章
相關標籤/搜索