get_declared_interfaces
PHP function
Edit on GitHub ✎
(PHP 5, PHP 7, PHP 8)
Returns an array of all declared interfaces
Description
get_declared_interfaces(): array
Gets the declared interfaces.
Parameters Parameters
Return Values
Returns an array of the names of the declared interfaces in the current script.
Examples
get_declared_interfaces() example
php
<?php
print_r(get_declared_interfaces());
?>The above example will output something similar to:
output
Array
(
[0] => Traversable
[1] => IteratorAggregate
[2] => Iterator
[3] => ArrayAccess
[4] => reflector
[5] => RecursiveIterator
[6] => SeekableIterator
)