(PHP 5, PHP 7, PHP 8)
ReflectionClass::isInterface — 檢查類是否是一個(gè)接口(interface)
檢查類是否是一個(gè)接口(interface)。
此函數(shù)沒有參數(shù)。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 ReflectionClass::isInterface() 基本用法
<?php
interface SomeInterface {
public function interfaceMethod();
}
$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>
以上例程會(huì)輸出:
bool(true)