| 
 | class_implementsReturn the interfaces which are implemented by the given class or interface Description
   arrayfalse class_implements(objectstring  $object_or_class, bool$autoload=true)
   This function returns an array with the names of the interfaces that the
   given  Parameters
 
 Return Values
   An array on success, or  Examples
 Example #1 class_implements example The above example will output something similar to: 
Array
(
    [foo] => foo
)
Array
(
    [foo] => foo
)
Array
(
    [interface_of_not_loaded] => interface_of_not_loaded
)
Notes
 |