$this 类内使用,代表当前对象
self:: 类内使用,用于访问静态属性, 类常量
class:: 类外用于访问静态属性,类常量
static:: 后期静态绑定,谁调用,当前对象即是谁
parent:: 访问父类数据
后期静态绑定
demo8.php
<?php
class Parent1{
public static $name = 'parent';
public function sayName()
{
echo static::$name; //谁调用,static即代表谁
}
}
class Son1 extends Parent1{
public static $name = 'son';
}
$parent_obj = new Parent1();
$parent_obj->sayName(); // parent
$son_obj = new Son1();
$son_obj->sayName(); // 输出 son