ReflectionClass::isInterface

(PHP 5)

ReflectionClass::isInterfaceChecks if the class is an interface

Beskrivelse

public bool ReflectionClass::isInterface ( void )

Checks whether the class is an interface.

Parametre

This function has no parameters.

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Eksempler

Eksempel #1 Basic usage of ReflectionClass::isInterface()

<?php
interface SomeInterface {
    public function 
interfaceMethod();
}

$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>

The above example will output:

bool(true)

Se også

add a note add a note

User Contributed Notes

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