ReflectionClass::getParentClass
(PHP 5, PHP 7, PHP 8)
ReflectionClass::getParentClass — 获取父类
参数
此函数没有参数。
返回值
ReflectionClass,没有父类为 false
。
+添加备注
用户贡献的备注 1 note
isaac dot z dot foster at gmail dot com ¶
11 years ago
To find all parents of a class you can use the following code:
$class = new ReflectionClass('classname');
$parents = [];
while ($parent = $class->getParentClass()) {
$parents[] = $parent->getName();
$class = $parent;
}
echo "Parents: " . implode(", ", $parents);
备份地址:http://www.lvesu.com/blog/php/reflectionclass.getparentclass.php