问题
Is it possible to get all subclasses of given class in php?
回答1:
function getSubclassesOf($parent) {
$result = array();
foreach (get_declared_classes() as $class) {
if (is_subclass_of($class, $parent))
$result[] = $class;
}
return $result;
}
Coincidentally, this implementation is exactly the one given in the question linked to by Vadim.
来源:https://stackoverflow.com/questions/3470008/how-to-obtain-all-subclasses-of-a-class-in-php