(PHP 5)
This function returns an array with the names of the interfaces that the given class implements.
An object (class instance) or a string (class name).
Returns an array or FALSE on error.
例子 1. class_implements() example
<?phpinterface foo { }class bar implements foo {}print_r(class_implements(new bar));?>
上例将输出:
Array ( [foo] => foo )