ReflectionClass::getInterfaces
(PHP 5)
ReflectionClass::getInterfaces — Gets the interfaces
Descrierea
public array ReflectionClass::getInterfaces
( void
)
Gets the interfaces.
Parametri
Această funcţie nu are parametri.
Valorile întroarse
An associative array of interfaces, with keys as interface names and the array values as ReflectionClass objects.
Exemple
Example #1 ReflectionClass::getInterfaces example
<?php
interface Foo { }
interface Bar { }
class Baz implements Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
print_r($rc1->getInterfaces());
?>
Exemplul de mai sus va afişa ceva similar cu:
Array
Array
(
[Foo] => ReflectionClass Object
(
[name] => Foo
)
[Bar] => ReflectionClass Object
(
[name] => Bar
)
)
ReflectionClass::getInterfaces
There are no user contributed notes for this page.
