ReflectionClass::getInterfaces

(PHP 5, PHP 7)
Gets the interfaces
public array ReflectionClass::getInterfaces ( void )

Gets the interfaces.

Returns:

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

Examples:
ReflectionClass::getInterfaces() example
<?php
interface Foo { }

interface Bar { }

class Baz implements Foo, Bar { }

$rc1 = new ReflectionClass("Baz");

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

The above example will output something similar to:

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

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

)
See also:

ReflectionClass::getInterfaceNames() -

doc_php
2016-02-24 16:13:20
Comments
Leave a Comment

Please login to continue.