class_parents

(PHP 5)

class_parents --  Return the parent classes of the given class

Beschreibung

array class_parents ( mixed class [, bool autoload] )

This function returns an array with the name of the parent classes of the given class.

Parameter Liste

class

An object or a string of the class

Rückgabewerte

Returns an array or FALSE on error.

ChangeLog

VersionBeschreibung
5.1.0 Added the option to pass the parameter as a string

Beispiele

Beispiel 1. class_parents() example

<?php

class foo { }
class
bar extends foo {}

print_r(class_parents(new bar));

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Array
(
    [foo] => foo
)

Siehe auch

class_implements()

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 17:56:58