CakeFest 2024: The Official CakePHP Conference

get_declared_interfaces

(PHP 5, PHP 7, PHP 8)

get_declared_interfacesReturns an array of all declared interfaces

Descrizione

get_declared_interfaces(): array

Gets the declared interfaces.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Example #1 get_declared_interfaces() example

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

Il precedente esempio visualizzerà qualcosa simile a:

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

Vedere anche:

add a note

User Contributed Notes

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