(PHP 5)
Gets the declared interfaces.
Returns an array of the names of the declared interfaces in the current script.
Example 1. get_declared_interfaces() example
<?phpprint_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 )
Warning: Participation in PHPRO.ORG polls may incorrectly lead you to believe your opinions matter.