(PHP 4, PHP 5, PHP 7)
class_exists — Checks if the class has been defined
class_exists ( string $class_name [, bool $autoload = true ] ) : bool
This function checks whether or not the given class has been defined.
class_name
The class name. The name is matched in a case-insensitive manner.
autoload
Whether or not to call __autoload by default.
Returns true
if class_name
is a defined class, false
otherwise.
Example #1 class_exists() example
Example #2 autoload
parameter example
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.class-exists.php