class test{
public $b;
//function __construct(){
// return $this->b;
// }
function test(){
return $this->b = 5;
}
function addab($c){
return $this->b+$c;
}
}
$obj = new test();
echo $obj->addab(4);
//当一个class里面没有_construct时,会查找和class同名的function,如果找到,就找到是构造函数。