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