(PHP 5)
This function returns an array with the name of the parent classes of the given class.
An object or a string of the class
Returns an array or FALSE on error.
Beispiel 1. class_parents() example
<?phpclass foo { }class bar extends foo {}print_r(class_parents(new bar));?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
Array ( [foo] => foo )
Hosting by: Hurra Communications GmbHGenerated: 2007-01-26 17:56:58