get_declared_interfaces
(PHP 5)
get_declared_interfaces — Returns an array of all declared interfaces
Opis
array get_declared_interfaces
( void
)
Gets the declared interfaces.
Zwracane wartości
Returns an array of the names of the declared interfaces in the current script.
Przykłady
Przykład #1 get_declared_interfaces() example
<?php
print_r(get_declared_interfaces());
?>
Powyższy przykład wyświetli coś podobnego do:
Array
(
[0] => Traversable
[1] => IteratorAggregate
[2] => Iterator
[3] => ArrayAccess
[4] => reflector
[5] => RecursiveIterator
[6] => SeekableIterator
)
Zobacz też:
- get_declared_classes() - Zwraca tablicę z nazwami zdefiniowanych klas
- class_implements() - Return the interfaces which are implemented by the given class
get_declared_interfaces
There are no user contributed notes for this page.
