class_implements
Return the interfaces which are implemented by the given class
&reftitle.description;
arrayclass_implementsmixedclassboolautoload
This function returns an array with the names of the interfaces that the
given class and its parents implement.
&reftitle.parameters;
class
An object (class instance) or a string (class name).
autoload
Whether to allow this function to load the class automatically through
the __autoload magic
method. Defaults to &true;.
&reftitle.returnvalues;
Returns an array or &false; on error.
&reftitle.changelog;
&Version;&Description;5.1.0
Added the option to pass the class parameter as
a string. Added the autoload parameter.
&reftitle.examples;
class_implements example
]]>
&example.outputs.similar;
foo
)
Array
(
[interface_of_not_loaded] => interface_of_not_loaded
)
]]>
&reftitle.seealso;
class_parents