(PHP 5)
ReflectionClass::isInterface — Checks if the class is an interface
Checks whether the class is an interface.
Questa funzione non contiene parametri.
Restituisce TRUE
in caso di successo, FALSE
in caso di fallimento.
Example #1 Basic usage of ReflectionClass::isInterface()
<?php
interface SomeInterface {
public function interfaceMethod();
}
$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>
Il precedente esempio visualizzerĂ :
bool(true)