PHP面向对象的构造和析构方法

  作者:bea

PHP面向对象的构造和析构方法在有些时候提高程序的性能有很大的帮助,这里用实例说明下。 name=$name; $this->age=$age; $this->sex=$sex; } function say(){ //$this->name;//对象中成员的访问使用$this echo "我的名字:{$this->name},我的年龄:{$this->age}" } function run(){ } function eat(){

PHP面向对象的构造和析构方法在有些时候提高程序的性能有很大的帮助,这里用实例说明下。


name=$name;
$this->age=$age;
$this->sex=$sex;
}
function say(){
//$this->name;//对象中成员的访问使用$this
echo "我的名字:{$this->name},我的年龄:{$this->age}
"
}
function run(){
}
function eat(){
}
//析构方法
function __destruct(){
}
}
$p1=new Person("zhangsan",25,"男");
$p2=new Person;
$p3=new Person;

有用  |  无用

猜你喜欢