<?php class father{ //定义father类 //定义private修饰的类成员和方法 private $hair='curly hair'; private function smoke(){ echo '我有吸烟的习惯.'; } } class son extends father{ //定义继承自father类的son类 //定义访问private修饰的类成员的方法 public function get_property(){ $this->hair; $this-&…