ReflectionClass::isInterface

(PHP 5, PHP 7)

ReflectionClass::isInterface������Ƿ���һ���ӿڣ�interface��

˵��

public ReflectionClass::isInterface ( void ) : bool

������Ƿ���һ���ӿڣ�interface����

����

�˺���û�в�����

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 ReflectionClass::isInterface() �����÷�

<?php
interface SomeInterface {
    public function 
interfaceMethod();
}

$class = new ReflectionClass('SomeInterface');
var_dump($class->isInterface());
?>

�������̻������

bool(true)

�μ�