(PHP 5)
ReflectionClass::isInterface — Checks if the class is an interface
Checks whether the class is an interface.
Ta funkcja nie posiada parametrów.
Zwraca TRUE
w przypadku powodzenia, FALSE
w
przypadku błędu.
Przykład #1 Basic usage of ReflectionClass::isInterface()
<?php
interface SomeInterface {
public function interfaceMethod();
}
$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>
Powyższy przykład wyświetli:
bool(true)