|
class_parentsReturn the parent classes of the given class Description
array class_parents
( mixed
$class
[, bool $autoload = true
] )
This function returns an array with the name of the parent classes of
the given Parameters
Return Values
An array on success, or Changelog
Examples
Example #1 class_parents example
<?php The above example will output something similar to: Array ( [foo] => foo ) Array ( [parent_of_not_loaded] => parent_of_not_loaded ) See Also
|