在 PHP 中,可以使用 get_class()
函数来获取子类的名称。get_class()
函数返回对象的类名。以下是一个示例:
class ParentClass {
public function getClassName() {
return get_class($this);
}
}
class ChildClass extends ParentClass {
}
$child = new ChildClass();
echo $child->getClassName(); // 输出 "ChildClass"
在这个示例中,我们定义了一个名为 ParentClass
的父类,并定义了一个名为 ChildClass
的子类,该子类继承自 ParentClass
。在 ParentClass
中,我们定义了一个名为 getClassName()
的方法,该方法使用 get_class()
函数返回当前对象的类名。在 ChildClass
中,我们创建了一个 ChildClass
的实例,并调用了 getClassName()
方法,该方法返回子类的名称 "ChildClass"。
领取专属 10元无门槛券
手把手带您无忧上云