downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

get_declared_traits> <get_declared_classes
[edit] Last updated: Tue, 21 May 2013

view this page in

get_declared_interfaces

(PHP 5)

get_declared_interfacesReturns an array of all declared interfaces

Descrizione

array get_declared_interfaces ( void )

Gets the declared interfaces.

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 add a note User Contributed Notes get_declared_interfaces - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites