php中析構函數和構造函數詳解和區別

構造函數__construct: 1.構造函數能夠接受參數,可以在建立對象時賦值給對象屬性。 2.構造函數能夠調用類方法或其餘函數。 3.構造函數能夠調用其餘類的構造函數。php <?php class test{ public $name; public $age; function __construct($a){ $this->name = $thi
相關文章
相關標籤/搜索