天天看點

php 構造函數 __construct()

__construct()

構造函數傳遞參數,并影響對象。對象産生時,自動執行。

析構函數 __destruct()  對象銷毀時自動執行。

class human{

public $name;

public $age;

public function __construct($name,$age){

this->name=$name;

thiw->age=$age;

}

$a=new human (張山,28);

轉載于:https://www.cnblogs.com/paddygege/p/6422008.html

php