get_declared_interfaces
(PHP 5)
get_declared_interfaces — Returns an array of all declared interfaces
Descrierea
array get_declared_interfaces
( void
)
Gets the declared interfaces.
Valorile întroarse
Returns an array of the names of the declared interfaces in the current script.
Exemple
Example #1 get_declared_interfaces() example
<?php
print_r(get_declared_interfaces());
?>
Exemplul de mai sus va afişa ceva similar cu:
Array
(
[0] => Traversable
[1] => IteratorAggregate
[2] => Iterator
[3] => ArrayAccess
[4] => reflector
[5] => RecursiveIterator
[6] => SeekableIterator
)
Vedeţi de asemenea
- get_declared_classes() - Returns an array with the name of the defined classes
- class_implements() - Return the interfaces which are implemented by the given class
get_declared_interfaces
There are no user contributed notes for this page.
