ThinkPHP6?? ??? ??? ?? ??? ????, ?? ????? ???? ?? ????? ???? ? ??? ???. ?? ???? ThinkPHP6?? ??? ??? ????? ??? ???????.
1. ??? ??? ?? ??
- ??? ??? ??
??? ??? ???? HTML? ???? ?????. ?? ??? ?? ???? ??? ???? ????. ????? ???? ?? ??? ??? ?? ??? ??? ?? ? ??? ???? ????? ????? ?????.
- ??? ?? ??
ThinkPHP6?? ??? ??? ?? ? ??? ??????. ??? PHP ??? ??? ??(?: Smarty, Blade ?)??, ?? ??? PHP ??? ??? ?????. ???? ??.
- ??? ??? ??
??? ??? ?? ???? ??? ???? ? ??? ??, ??? ?? ???? ???? ?????, ??? ???? ???? ??? ???? ?? ???? ???? ? ????.
2. ThinkPHP6? ??? ?? ??
- ??? ?? ??
ThinkPHP6??? ?? ??? ?? ??? ??? ??? ??? ? ????.
php think make:view Index/index
??? Index? ???? ??? ???? index? ??? ??? ?????. ? ??? ???? ?????? ????? Index ????? ???? ????, ? ????? index.html ??? ?????.
- ??? ?? ??
??? ??? ?? ? ??? ?? HTML, CSS, JavaScript ? ?? ??? ??? ? ????. ??? ???? ??? ??? ??? ?? ???? ??? ?? ????.
?:
<html>
<head>
<title>用戶列表</title>
</head>
<body>
<table>
<thead>
<tr>
<th>編號(hào)</th>
<th>用戶名</th>
<th>郵箱</th>
<th>注冊(cè)時(shí)間</th>
</tr>
</thead>
<tbody>
<?php foreach($users as $user): ?>
<tr>
<td><?php echo $user['id']; ?></td>
<td><?php echo $user['username']; ?></td>
<td><?php echo $user['email']; ?></td>
<td><?php echo $user['create_time']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</body>
</html>
? ????? PHP? foreach ?? ?? ???? ??? ?? ???? ???? ???? HTML ???? ??????.
- ??? ?? ?? ? ??
ThinkPHP6??? ????? ?? ???? ???? ??? ??? ?? ??? ??? ? ????.
?:
public function index()
{
// 獲取用戶數(shù)據(jù)
$users = Db::name('user')->select();
// 設(shè)置模板變量
$this->assign('users', $users);
// 渲染模板輸出
return $this->view->fetch();
}
? ????? ?? Db::name('user')->select() ???? ?? ??? ???? ??? ?? $this-> ??() ???? ??? ??? ?????. ????? ??? ??? return $this->view->fetch() ???? ?? HTML ???? ????? ????? ?????.
??? ????? {{$?? ??}} ??? ?? ??? ?? ?? ??? ? ????.
?:
@foreach($users as $user)
<tr>
<td>{{$user['id']}}</td>
<td>{{$user['username']}}</td>
<td>{{$user['email']}}</td>
<td>{{$user['create_time']}}</td>
</tr>
@endforeach
? ????? {{$}} ??? ???? ??? ????? ?? ?? ??? HTML ???? ?????.
- ??? ???? ??
?? ????? ????? ?? ??? ????? ?? ??(??, ??, ???? ?)? ???? ?? ????? ??????.
ThinkPHP6??? ??? ????? ???? ? ??? ??? ? ????. ???? ??? ??? ????.
1) ?????? ????? ???? ????? ??? ? ????? base.html ??? ????.
2) base.html ???? ??, ??, ?? ?? ?? ? ??? ????? ?????.
?:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>{{$title}}</title>
</head>
<body>
<header>
<!-- 頭部代碼 -->
</header>
<main>
<!-- 主體代碼 -->
</main>
<footer>
<!-- 底部代碼 -->
</footer>
</body>
</html>
? ????? HTML ???? ?? ????? ???? {{$}} ??? ???? ?? ?? ?????.
3) ?? ???? ??? ???? ????? ?? ??? ???? ?? ? ?? ??? ?????.
?:
@extends('layout/base')
@section('content')
<table>
<thead>
<tr>
<th>編號(hào)</th>
<th>用戶名</th>
<th>郵箱</th>
<th>注冊(cè)時(shí)間</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{$user['id']}}</td>
<td>{{$user['username']}}</td>
<td>{{$user['email']}}</td>
<td>{{$user['create_time']}}</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
? ????? ?? @extends ??? ???? ?? ???? ??? ??? ?? @section ? @endsection ??? ???? ??? ???? ???? ?????.
??
? ?? ??? ?? ???? ??? ?? ??, ??? ?? ?? ? ??, ??? ???? ?? ? ThinkPHP6?? ??? ??? ???? ??? ???? ???. ??? ??? ? ??? ?? ??? ?????. ? ??? ??? ?? ???? ?? ?? ???? ?????.
? ??? ThinkPHP6?? ??? ??? ??? ??????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!