Gets the interface names
Get the interface names.
This function has no parameters.
A numerical array with interface names as the values.
Example #1 ReflectionClass::getInterfaceNames example
<?phpinterface Foo { }interface Bar { }class Baz implements Foo, Bar { }$rc1 = new ReflectionClass("Baz");print_r($rc1->getInterfaceNames());?>
The above example will output something similar to:
Array ( [0] => Foo [1] => Bar )