class_exists
PHP function
Edit on GitHub ✎
(PHP 4, PHP 5, PHP 7, PHP 8)
Checks if the class has been defined
Description
class_exists(string $class, bool $autoload = true): bool
This function checks whether or not the given class has been defined.
Parameters
classThe class name. The name is matched in a case-insensitive manner.
autoloadWhether to autoload if not already loaded.
Return Values
Returns true if class is a defined class, false otherwise.
Examples
class_exists() example
php
<?php
// Check that the class exists before trying to use it
if (class_exists('MyClass')) {
$myclass = new MyClass();
}
?>autoload parameter example
php
<?php
spl_autoload_register(function ($class_name) {
include $class_name . '.php';
// Check to see whether the include declared the class
if (!class_exists($class_name, false)) {
throw new LogicException("Unable to load class: $class_name");
}
});
if (class_exists(MyClass::class)) {
$myclass = new MyClass();
}
?>