Note that this method also returns true when the thing you're reflecting is the interface you're checking for:<?phpinterface MyInterface {}$reflect = new ReflectionClass('MyInterface');var_dump($reflect->implementsInterface('MyInterface')); // bool(true)?>