## 在controller找到Index.php創建后臺管理控制器
*****

```
classIndexextendsController
{
publicfunctionindex()
??? ?{
//用戶信息表
$user?=?Db::name('user')->select();
//輸出查詢到的數據到后端模板頁
$this\->assign('user',$user);
return$this\->fetch();
?? ??}
}
```
*****
```
審核:賈超賢 編輯:張志宇 更新時間:2021-07-01 17:5:30
```