PHP » GoLang |
login |
register |
about
|
GoLang ReflectionClass::getInterfaces
request it (604)
GoLang replacement for PHP's ReflectionClass::getInterfaces
[edit | history]
PHP ReflectionClass::getInterfacesPHP original manual for ReflectionClass::getInterfaces [ show | php.net ]ReflectionClass::getInterfaces(PHP 5, PHP 7) ReflectionClass::getInterfaces — Gets the interfaces Description
public array ReflectionClass::getInterfaces
( void
)
Gets the interfaces. ParametersThis function has no parameters. Return ValuesAn associative array of interfaces, with keys as interface names and the array values as ReflectionClass objects. Examples
Example #1 ReflectionClass::getInterfaces() example
<?phpThe above example will output something similar to:
Array
(
[Foo] => ReflectionClass Object
(
[name] => Foo
)
[Bar] => ReflectionClass Object
(
[name] => Bar
)
)
|
more
Most requested
more
Last requests
|