|
spl_autoloadDefault implementation for __autoload() Description
void spl_autoload(string
$class , stringnull $file_extensions = null )This function is intended to be used as a default implementation for __autoload. If nothing else is specified and spl_autoload_register is called without any parameters then spl_autoload will be used for any later call to __autoload. Parameters
Return ValuesNo value is returned. Errors/ExceptionsThrows LogicException when the class is not found and there are no other autoloaders registered. Changelog
|