(PHP 5 >= 5.0.2, PHP 7)
interface_exists — ���ӿ��Ƿ��ѱ�����
$interface_name
[, bool $autoload
= true
] ) : bool���ӿ��Ƿ��ѱ����塣
���������� interface_name
�����Ľӿ��Ѷ���ʱ���� TRUE
������ FALSE
��
Example #1 interface_exists() ����
<?php
// �ڳ���ʹ��ǰ�ȼ��ӿ��Ƿ����
if (interface_exists('MyInterface')) {
class MyClass implements MyInterface
{
// Methods
}
}
?>