get_declared_interfaces

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

Gets the declared interfaces.

Returns:

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

Examples:
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
)
See also:

interface_exists() -

get_declared_classes() -

class_implements() -

doc_php
2016-02-24 16:12:59
Comments
Leave a Comment

Please login to continue.