ReflectionClass::getParentClass

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getParentClass获取父类

描述

public ReflectionClass::getParentClass(): ReflectionClass|false

获取父类。

参数

此函数没有参数。

返回值

一个 ReflectionClassfalse 如果没有父类。

参见

添加笔记

用户贡献笔记 1 条笔记

18
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