多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 数据库 ***** 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`模板文件。