ReflectionClass
PHP Manual

ReflectionClass::getInterfaces

(PHP 5)

ReflectionClass::getInterfacesGets the interfaces

Descripción

public array ReflectionClass::getInterfaces ( void )

Gets the interfaces.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

An associative array of interfaces, with keys as interface names and the array values as ReflectionClass objects.

Ejemplos

Example #1 ReflectionClass::getInterfaces() example

<?php
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

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

El resultado del ejemplo sería algo similar a:

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

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

)

Ver también


ReflectionClass
PHP Manual