PHP Dokumentation: Function get-declared-interfaces
12. Januar 2010 von werner
get_declared_interfaces
(PHP 5)
get_declared_interfaces — Returns an array of all declared interfaces
Beschreibung
array get_declared_interfaces ( void )
Gets the declared interfaces.
Rückgabewerte
Returns an array of the names of the declared interfaces in the current script.
Beispiele
Beispiel #1 get_declared_interfaces() example
<?php
print_r(get_declared_interfaces());
?>Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie:
Array( [0] => Traversable [1] => IteratorAggregate [2] => Iterator [3] => ArrayAccess [4] => reflector [5] => RecursiveIterator [6] => SeekableIterator)
Siehe auch
- get_declared_classes() – Ermittelt die Namen der definierten Klassen
- class_implements() – Return the interfaces which are implemented by the given class