1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 簡單介紹php構造函數用法

        時間:2024-08-31 01:12:42 PHP 我要投稿
        • 相關推薦

        簡單介紹php構造函數用法

          構造函數意思就是在類執行時通過構造函數作為入口進行操作了,下面我們來看一篇關于php構造函數用法文章吧。

          構造函數 和 析構函數

          構造函數

          void __construct ([ mixed $args [, $... ]] )

          PHP 5 允行開發者在一個類中定義一個方法作為構造函數。具有構造函數的類會在每次創建新對象時先調用此方法,所以非常適合在使用對象之前做一些初始化工作。

          Note: 如果子類中定義了構造函數則不會隱式調用其父類的構造函數。要執行父類的構造函數,需要在子類的構造函數中調用 parent::__construct()。如果子類沒有定義構造函數則會如同一個普通的類方法一樣從父類繼承(假如沒有被定義為 private 的話)。

          Example #1 使用新標準的構造函數

          <?php

          class BaseClass {

          //我是一個父親的構造函數

          function __construct() {

          print "In BaseClass constructor<br>";

          }

          }

          //我是一個孩子類

          class SubClass extends BaseClass {

          function __construct() {//孩子的構造函數

          parent::__construct(); //我執行一次父親的構造函數先。

          print "In SubClass constructor<br>";

          }

          }

          //我是個孩子,但是我沒有自己的構造函數,所以我自動用我父親的

          class OtherSubClass extends BaseClass {

          // inherits BaseClass's constructor

          }

          //我是個孩子,我有自己的構造函數,拋棄父親的。所以我不執行父親的構造函數的打印

          class OtherSub2Class extends BaseClass {

          // inherits BaseClass's constructor

          function __construct() {//孩子的構造函數

          print "In OtherSub2Class constructor<br>";

          }

          }

          // In BaseClass constructor

          $obj = new BaseClass();

          // In BaseClass constructor

          // In SubClass constructor

          $obj = new SubClass();

          // In BaseClass constructor

          $obj = new OtherSubClass();

          $obj = new OtherSub2Class();

          ?>

          為了實現向后兼容性,如果 PHP 5 在類中找不到 __construct() 函數并且也沒有從父類繼承一個的話,它就會嘗試尋找舊式的構造函數,也就是和類同名的函數。因此唯一會產生兼容性問題的情況是:類中已有一個名為 __construct()的方法卻被用于其它用途時。

          與其它方法不同,當 __construct() 被與父類 __construct() 具有不同參數的方法覆蓋時,PHP 不會產生一個 E_STRICT錯誤信息。

          自 PHP 5.3.3 起,在命名空間中,與類名同名的方法不再作為構造函數。這一改變不影響不在命名空間中的類。

          Example #2 Constructors in namespaced classes

          <?php

          namespace Foo;

          class Bar {

          public function Bar() {

          // treated as constructor in PHP 5.3.0-5.3.2

          // treated as regular method as of PHP 5.3.3

          }

          }

          ?>

          析構函數

          void __destruct ( void )

          PHP 5 引入了析構函數的概念,這類似于其它面向對象的語言,如 C++。析構函數會在到某個對象的所有引用都被刪除或者當對象被顯式銷毀時執行。

          在 php 文件完全執行完畢,這個類會進入銷毀,執行一次析構函數,和構造函數,正好相反,構造函數是在創建類的時候進入執行

          Example #3 析構函數示例

          <?php

          class MyDestructableClass {

          function __construct() {

          print "In constructor<br>";

          $this->name = "MyDestructableClass";

          }

          function __destruct() {

          print "Destroying " . $this->name . "<br>";

          }

          }

          $obj = new MyDestructableClass();

          echo 'i write something <br>';

          ?>

          輸出

          In constructor

          i write something

          Destroying MyDestructableClass

          和構造函數一樣,父類的析構函數不會被引擎暗中調用。要執行父類的析構函數,必須在子類的析構函數體中顯式調用 parent::__destruct()。此外也和構造函數一樣,子類如果自己沒有定義析構函數則會繼承父類的。

          析構函數即使在使用 exit() 終止腳本運行時也會被調用。在析構函數中調用 exit() 將會中止其余關閉操作的運行。

          Note:

          析構函數在腳本關閉時調用,此時所有的 HTTP 頭信息已經發出。腳本關閉時的工作目錄有可能和在 SAPI(如 apache)中時不同。

          Note:

          試圖在析構函數(在腳本終止時被調用)中拋出一個異常會導致致命錯誤。

        【簡單介紹php構造函數用法】相關文章:

        簡單分析PHP中序列化用法介紹03-05

        PHP的壓縮函數03-31

        淺析php函數的實例04-01

        GET.CELL函數的詳細用法及實例介紹03-18

        關于asp 的常用函數用法03-30

        PHP中的排序函數區別分析03-31

        探討PHP函數的實現原理及性能04-01

        PHP中函數的使用說明03-30

        php外部執行命令函數03-31

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>