downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::getMethod> <ReflectionClass::getInterfaceNames
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::getInterfaces

(PHP 5)

ReflectionClass::getInterfacesGets the interfaces

Descrizione

public array ReflectionClass::getInterfaces ( void )

Gets the interfaces.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Example #1 ReflectionClass::getInterfaces() example

<?php
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

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

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

)

Vedere anche:



add a note add a note User Contributed Notes ReflectionClass::getInterfaces - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites