PHP 8.5.0 Beta 2 available for testing

get_declared_interfaces

(PHP 5, PHP 7, PHP 8)

get_declared_interfacesReturns an array of all declared interfaces

Description

get_declared_interfaces(): array

Gets the declared interfaces.

Parameters

This function has no parameters.

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

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /