> ### 下载地址:
#### 使用git下载(自行安装)下载完成后在任意目录执行命令
```
git clone https://github.com/dinofei/tp3-.git Core
```
#### 使用:
```
将Core放入tp核心目录 , 如下 根目录/ThinkPHP/Core
在 根目录/ThinkPHP\Library\Think\Think.class.php 修改:
1、注释默认的注册错误和异常方式 , 采用Core自定义异常处理
2、在系统默认配置函数文件加载完成后加入Core的配置文件
```
*在大约35行 注释tp3默认设定*
`// 设定错误和异常处理
// register\_shutdown\_function('Think\\Think::fatalError');
// set\_error\_handler('Think\\Think::appError');
// set\_exception\_handler('Think\\Think::appException');`
*****
*在大约120行左右 加入Core配置文件*
`// +--------------------Core配置文件加载----------------+
if(is\_file(THINK\_PATH .'Core/Conf/tags.php')){
Hook::import(include THINK\_PATH .'Core/Conf/tags.php');
}
if(is\_file(THINK\_PATH .'Core/Conf/config.php')){
C(include THINK\_PATH .'Core/Conf/config.php');
}
if(is\_file(THINK\_PATH .'Core/Helper/fun.php')){
include THINK\_PATH .'Core/Helper/fun.php';
}
// +--------------------Core配置文件加载----------------+
// +--------------------Core全局异常处理----------------+
$error = new \\Core\\Initializer\\Error\\Error();
$error\->init();
// +--------------------Core全局异常处理----------------+`