= 5.0.2, PHP 7, PHP 8)interface_exists — 檢查接口是否已被定義說(shuō)明interface_exists(string $interface, bool $autoload = true): bool檢查接口是否已被定">
(PHP 5 >= 5.0.2, PHP 7, PHP 8)
interface_exists — 檢查接口是否已被定義
$interface
, bool $autoload
= true
): bool檢查接口是否已被定義。
本函數(shù)在由 interface
給出的接口已定義時(shí)返回 true
,否則返回 false
。
示例 #1 interface_exists() 例子
<?php
// 在嘗試使用前先檢查接口是否存在
if (interface_exists('MyInterface')) {
class MyClass implements MyInterface
{
// Methods
}
}
?>