--TEST-- ReflectionClass::getInterfaceNames() --CREDITS-- Michelangelo van Dam #testfest roosendaal on 2008-05-10 --FILE-- getInterfaceNames()); $rc2 = new ReflectionClass("Qux"); var_dump($rc2->getInterfaceNames()); ?> --EXPECT-- array(2) { [0]=> string(3) "Foo" [1]=> string(3) "Bar" } array(0) { }