downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::isInternal> <ReflectionClass::isInstantiable
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::isInterface

(PHP 5)

ReflectionClass::isInterfaceChecks if the class is an interface

Description

public bool ReflectionClass::isInterface ( void )

Checks whether the class is an interface.

Parameters

This function has no parameters.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #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)

See Also



add a note add a note User Contributed Notes ReflectionClass::isInterface - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites