ReflectionClass::getParentClass
(PHP 5, PHP 7, PHP 8)
ReflectionClass::getParentClass — 親クラスを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ReflectionClass を返します。
親が存在しない場合は、false
を返します。
+add a note
User Contributed Notes 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);
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google