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

search for in the

get_object_vars> <get_declared_classes
Last updated: Sun, 25 Nov 2007

view this page in

get_declared_interfaces

(PHP 5)

get_declared_interfaces — Returns 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.

예제

Example#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
get_declared_interfaces
There are no user contributed notes for this page.

get_object_vars> <get_declared_classes
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites