(PHP 5 >= 5.2.0, PHP 7)
ReflectionClass::getInterfaceNames — Gets the interface names
Get the interface names.
Diese Funktion hat keine Parameter.
A numerical array with interface names as the values.
Beispiel #1 ReflectionClass::getInterfaceNames() example
<?php
interface Foo { }
interface Bar { }
class Baz implements Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
print_r($rc1->getInterfaceNames());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array ( [0] => Foo [1] => Bar )