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 →
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com