FastErr class, the smart Err class - BSD License
Capitan Cloud 008a718c74 Update README.md | hace 1 año | |
---|---|---|
LICENSE | hace 4 años | |
README.md | hace 1 año | |
class.fasterr.inc | hace 4 años |
FastErr
FastErr class
@package OpenGallery http://github.com/par7133
@author Daniele Bonini posta@elettronica.lol
@version 1.0
@phpver 5.6 to 7.3
@access public
@note You have to declare in your "config.inc" file - or whatever file you
use for the purpose, the following global constants:
define('APP_NAME', "YOUR_APP_NAME");
define('DEBUG', "true|false");
This class makes use of the global function isset1, declared in this way:
function isset1(&$var, $default=false) {
if (isset($var))
return $var;
} else {
return $default;
}
}