(PHP 5)
This function returns an array with the name of the interfaces that the given class implements.
Esempio 1. class_implements() example
<?phpinterface foo { }class bar implements foo {}print_r(class_implements(new bar));?>
The above example will output:
Array ( [foo] => foo )
Hosting by: hurra.comGenerated: 2007-01-26 17:56:23