loadClass()
loadClass(string $class, string|array $dirs = null) : void
Loads a class from a PHP file. The filename must be formatted as "$class.php".
If $dirs is a string or an array, it will search the directories in the order supplied, and attempt to load the first matching file.
If $dirs is null, it will split the class name at underscores to generate a path hierarchy (e.g., "Zend_Example_Class" will map to "Zend/Example/Class.php").
If the file was not found in the $dirs, or if no $dirs were specified, it will attempt to load it from PHP's include_path.
Parameters
string | $class |
|
string|array | $dirs |
|
Throws
- \Zend_Exception