Voting

: min(seven, four)?
(Example: nine)

The Note You're Voting On

a dot panek at brainsware dot org
11 years ago
Calling class_implements with a non-loadable class name or a non-object results in a warning:

<?php
// Warning: class_implements(): Class abc does not exist and could not be loaded in /home/a.panek/Projects/sauce/lib/Sauce/functions.php on line 196

$interfaces = class_implements('abc');
?>

This is not documented and should just return FALSE as the documentation above says.

<< Back to user notes page

To Top