class_implements

(PHP 5)

class_implements --  Return the interfaces which are implemented by the given class

Beschreibung

array class_implements ( mixed class [, bool autoload] )

This function returns an array with the names of the interfaces that the given class implements.

Parameter Liste

class

An object (class instance) or a string (class name).

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_implements() example

<?php

interface foo
{ }
class
bar implements foo {}

print_r(class_implements(new bar));

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Array
(
    [foo] => foo
)

Siehe auch

class_parents()

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