全局方法_异常处理

异常处理方法的注册,参见:\Lovephp::start()

if(1)
{

	spl_autoload_register('\Lovephp::php_autoload');
	set_error_handler('\Lovephp::php_error_handler');
	set_exception_handler('\Lovephp::php_exception_handler');

	if(1)
	{
		register_shutdown_function('\Lovephp::php_shutdown_function');
	}

}

抛出异常

R_exception('[error-3642]xxx');