get_declared_interfaces

(PHP 5, PHP 7)

get_declared_interfacesReturns an array of all declared interfaces

Опис

array get_declared_interfaces ( void )

Gets the declared interfaces.

Значення, що повертаються

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

Приклади

Приклад #1 get_declared_interfaces() example

<?php
print_r
(get_declared_interfaces());
?>

Наведений вище приклад виведе щось подібне до:

Array
(
    [0] => Traversable
    [1] => IteratorAggregate
    [2] => Iterator
    [3] => ArrayAccess
    [4] => reflector
    [5] => RecursiveIterator
    [6] => SeekableIterator
)

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top