Query: get_declared_interfaces
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GET_DECLARED_INTERFACES(3) 1 GET_DECLARED_INTERFACES(3) get_declared_interfaces - Returns an array of all declared interfacesSYNOPSISarray get_declared_interfaces (void )DESCRIPTIONGets the declared interfaces.RETURN VALUESReturns an array of the names of the declared interfaces in the current script.EXAMPLESExample #1 get_declared_interfaces(3) example <?php print_r(get_declared_interfaces()); ?> The above example will output something similar to: Array ( [0] => Traversable [1] => IteratorAggregate [2] => Iterator [3] => ArrayAccess [4] => reflector [5] => RecursiveIterator [6] => SeekableIterator )SEE ALSOinterface_exists(3), get_declared_classes(3), class_implements(3). PHP Documentation Group GET_DECLARED_INTERFACES(3)