ReflectionClass::getInterfaces

(PHP 5, PHP 7)

ReflectionClass::getInterfaces��ȡ�ӿ�

˵��

public ReflectionClass::getInterfaces ( void ) : array

��ȡ�ӿڡ�

����

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

����ֵ

�ӿڵĹ���������������ǽӿڣ�interface�������ƣ������ֵ�� ReflectionClass ����

����

Example #1 ReflectionClass::getInterfaces() ����

<?php
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

print_r($rc1->getInterfaces());
?>

�������̵���������ڣ�

Array
(
    [Foo] => ReflectionClass Object
        (
            [name] => Foo
        )

    [Bar] => ReflectionClass Object
        (
            [name] => Bar
        )

)

�μ�