PHP
反射 | Reflection

ReflectionClass::isInterface

ReflectionClass::isInterface

(PHP 5, PHP 7)

ReflectionClass::isInterface - 检查类是否为接口

描述

public bool ReflectionClass::isInterface ( void )

检查类是否是一个接口。

参数

该函数没有参数。

返回值

成功时返回TRUE或失败时返回FALSE

例子

Example#1 ReflectionClass::isInterface()的基本用法

<?php interface SomeInterface {     public function interfaceMethod( } $class = new ReflectionClass('SomeInterface' var_dump($class->isInterface() ?>

上面的例子将输出:

bool(true)

另请参阅

  • ReflectionClass::isInstance() - 检查类的实例

← ReflectionClass::isInstantiable

ReflectionClass::isInternal →