php中構造方法和析構方法的代碼實現

來源:互聯網
上載者:User
這篇文章給大家介紹的內容是關於php中構造方法和析構方法的代碼實現,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

<?php//構造方法和析構方法    class guests{        private $name;        private $gender;        function __construct($name,$gender){    //構造方法__construct 對屬性進行初始化,構造方法不能返回return值            $this->name=$name;      //訪問類中成員的屬性  $變數名->成員屬性=值            $this->gender=$gender;        }        function get_name(){            return $this->name;        }        function get_gender(){            return $this->gender;        }    }    $people1 = new guests("劉備","男");    //在執行個體化的同時對此執行個體(對象)賦值    $people2 = new guests("關羽","女");    echo $people1->get_name()."\t".$people1->get_gender()."<br/>";    echo $people2->get_name()."\t".$people2->get_gender();    function __destruct(){  //析構方法__destruct 在對象銷毀的時候調用執行        //方法的內容,通常完成一些在對象銷毀前的清理任務    }

相關文章推薦:

PHP中常用的函數以及全域變數的總結(推薦)

PHP如何?計數排序的代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.