interface_exists

(PHP 5 >= 5.0.2, PHP 7)

interface_exists���ӿ��Ƿ��ѱ�����

˵��

interface_exists ( string $interface_name [, bool $autoload = true ] ) : bool

���ӿ��Ƿ��ѱ����塣

����

interface_name

�ӿ�����

autoload

Ĭ���Ƿ���� __autoload��

����ֵ

���������� interface_name �����Ľӿ��Ѷ���ʱ���� TRUE�����򷵻� FALSE��

����

Example #1 interface_exists() ����

<?php
// �ڳ���ʹ��ǰ�ȼ��ӿ��Ƿ����
if (interface_exists('MyInterface')) {
    class 
MyClass implements MyInterface
    
{
        
// Methods
    
}
}

?>

�μ�