(PHP 5)
This function returns an array with the name of the interfaces that the given class implements.
Príklad 1. class_implements() example
<?phpinterface foo { }class bar implements foo {}print_r(class_implements(new bar));?>
V�stup pr�kladu uveden�ho vy�ie bude:
Array ( [foo] => foo )