JavaScript Editor Javascript debugger     Website design 


get_declared_interfaces

Returns an array of all declared interfaces (PHP 5)
array get_declared_interfaces ( )

Gets the declared interfaces.

Return Values

Returns an array of the names of the declared interfaces in the current script.

Examples

Example 379. get_declared_interfaces() 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
)