get_declared_interfaces

(PHP 5, PHP 7)

get_declared_interfaces선언된 모든 인터페이스의 배열을 반환

설명

array get_declared_interfaces ( void )

선언된 인터페이스를 얻습니다.

반환값

현재 스크립트에서 선언된 인터페이스명의 배열을 반환합니다.

예제

Example #1 get_declared_interfaces() 예제

<?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

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