wireClassExists() function

Does the given class name exist?

ProcessWire namespace aware version of PHP’s class_exists() function

If given a class name that does not include a namespace, the \ProcessWire namespace is assumed.

Please note this method is and thus not intended to be called directly.

Internal usage

// basic internal usage
$bool = wireClassExists(string $className);

// internal usage with all arguments
$bool = wireClassExists(string $className, bool $autoload = true);

Arguments

NameType(s)Description
$classNamestring
$autoload (optional)bool

Return value

bool


Functions methods and properties

API reference based on ProcessWire core version 3.0.251