为什么下面的代码不返回值?我只是得到一个空白屏幕。
当我在子类中尝试私有变量 val 时,至少它应该返回一些错误。
class Customer {
private $instance_count = 0; //private data member
function sub1(){
return $this->instance_count++;
}
}
class CustomerChild extends Customer{
function sub2(){
return $this->instance_count++;
}
}
$CustomerObj = new CustomerChild();
print $CustomerObj->sub2();