set_exception_handler(array('core', 'handleException'));
if(DISCUZ_CORE_DEBUG) {
 set_error_handler(array('core', 'handleError'));
 register_shutdown_function(array('core', 'handleShutdown'));
}
if(function_exists('spl_autoload_register')) {
 spl_autoload_register(array('core', 'autoload'));
} else {
 function __autoload($class) {
  return core::autoload($class);
 }
}
08-30 17:15