(PHP 5, PHP 7)
ReflectionClass::isInterface — Checks if the class is an interface
Checks whether the class is an interface.
이 함수는 인수가 없습니다.
성공 시 TRUE
를, 실패 시 FALSE
를 반환합니다.
Example #1 Basic usage of ReflectionClass::isInterface()
<?php
interface SomeInterface {
public function interfaceMethod();
}
$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>
위 예제의 출력:
bool(true)