标签:
受保护的属性与私有属性不允许外部调用,在类的成员方法内部是可以调用的。
class Car{ private $price = ‘1000‘; public function getPrice() { return $this->price; //内部访问私有属性 ? } }
受保护的
原文地址:http://www.cnblogs.com/lidepeng/p/5931711.html