GoLang get_declared_interfaces

request it (332)
GoLang replacement for PHP's get_declared_interfaces [edit | history]



Do you know a GoLang replacement for PHP's get_declared_interfaces? Write it!

PHP get_declared_interfaces

PHP original manual for get_declared_interfaces [ show | php.net ]

get_declared_interfaces

(PHP 5, PHP 7)

get_declared_interfacesReturns an array of all declared interfaces

Description

array get_declared_interfaces ( void )

Gets the declared interfaces.

Return Values

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

Examples

Example #1 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