class Student{ //1.成员属性 /* * <1>public关键字表示声明的变量是共用的,任何地方都能访问到 <2>private关键字表示变量是私有的,只能在同一类中访问到 <3>protected关键字表示变量是受保护的,只能在同一类和类的子类中访问。 */ public $name = "zhangsan",$score,$num; //构造函数传参 public function __construct($name,$score,$num) { $this->name = $name; $this->score = $score; $this->num = $num; } //析构函数 public function __destruct() { echo "函数死了"; // TODO: Implement __destruct() method. } //2.成员方法 //当前学生会唱歌 public function sing($songname){ return"会唱{$songname}歌"; } //当前学生会跑步 public function run(){ return"学生会跑步"; } //介绍自己 public function showSelf(){ echo "我叫{$this->name},学号是{$this->num},我考了{$this->score}分,我{$this->sing("小星星")}"; } }
//实例化对象 $student1 = new Student("王五",95,1001);
//对象访问成员属性 $student1->name="lisi"; //对象访问成员方法 $student1->sing("小星星");
$student2->showSelf(); //instanceof 用于检测当前对象实例是否属于某一个类的类型,返回bool值 eg: echo $student1 instanceof Student; // 结果是true