参考文档:thinkPHP5.0完全手册
一.安装
采用的是git安装方式:
- 应用项目:
https://github.com/top-think/think
- 核心框架:
https://github.com/top-think/framework
1.首先克隆下载应用项目仓库:
git clone https://github.com/top-think/think tp5
2.然后切换到tp5
目录下面,再克隆核心框架仓库:
git clone https://github.com/top-think/framework thinkphp
3.修改Apache根目录为项目的public目录即 D:\www\mydemo\public。打开浏览器输入127.0.0.1
出现上图则为安装成功。
二.连接数据库
1.在database.php里面配置数据库信息
2.在控制器里编写测试内容:
public function testDb(){
$userList = Db::query('select * from admin_user');
print_r($userList);
}
3.打开浏览器检测数据库是否连接成功 。