update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the interface names

ReflectionClass::getInterfaceNames

(PHP 5 >= 5.2.0)

ReflectionClass::getInterfaceNamesGets the interface names

설명

public array ReflectionClass::getInterfaceNames ( void )

Get the interface names.

인수

이 함수는 인수가 없습니다.

반환값

A numerical array with interface names as the values.

예제

Example #1 ReflectionClass::getInterfaceNames() example

<?php
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

print_r($rc1->getInterfaceNames());
?>

위 예제의 출력 예시:

Array
(
    [0] => Foo
    [1] => Bar
)

참고