PHP Conference Japan 2024

ReflectionClass::getParentClass

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getParentClass获取父类

描述

public ReflectionClass::getParentClass(): ReflectionClass|false

获取父类。

参数

此函数没有参数。

返回值

如果存在父类,则返回一个 ReflectionClass,否则返回 false

参见

添加注释

用户贡献的注释 1 条注释

isaac dot z dot foster at gmail dot com
11 年前
要查找类的所有父类,可以使用以下代码

$class = new ReflectionClass('classname');

$parents = [];

while ($parent = $class->getParentClass()) {
$parents[] = $parent->getName();
$class = $parent;
}

echo "Parents: " . implode(", ", $parents);
To Top