### 数据库
*****
tianphp默认使用的是 [think-orm](https://www.kancloud.cn/manual/think-orm/1257998) 模版引擎,用法与之相同。
配置好`config/database.php`文件后,即可再再控制器中使用。
使用:
```
<?php
namespace app\home\controller;
use tian\Controller;
use think\facade\Db;
class Index extends Controller
{
public function index()
{
$id = input("id");
$info = [];
if($id){
$info = Db::name('info')->where("id",$id)->find();
}
$data = [
'info' => $info,
];
$this->fetch("index", $data);
}
}
```
`think\facade\Db` 引入think的Db到控制器中。
`$this->fetch("index", $data)`渲染输出数据`$data`到`index`模板文件。