(PHP 5 >= 5.0.2, PHP 7, PHP 8)
interface_exists — 检查接口是否已被定义
$interface
$autoload
true
检查接口是否已被定义。
interface
接口名。
autoload
如果尚未加载,是否自动加载。
本函数在由 interface 给出的接口已定义时返回 true,否则返回 false。
false
示例 #1 interface_exists() 示例
<?php// 在尝试使用前先检查接口是否存在if (interface_exists('MyInterface')) { class MyClass implements MyInterface { // Methods }}?>