ThinkPHP6是目前比較流行的一個PHP框架,它提供了許多方便的特性以及工具,其中之一就是內建的模板引擎。本文將介紹如何在ThinkPHP6中使用模板引擎。
一、建立範本檔案
首先,我們需要在專案中建立一個範本資料夾,路徑為:/application/index/view/
,這個資料夾存放我們的模板文件。
接下來在範本資料夾中新建index.html文件,這個文件將會作為我們的範本文件。
二、模板語法
ThinkPHP6使用了Twig模板引擎,並加入了自己的擴充功能。我們來學習它的基本使用方法。
使用{{}}
語法來輸出變數。例如:{{title}}
將輸出變數$title的值。請注意,變數名稱不需要使用$
符號。
if語句使用{% if condition %} ... {% endif %}
語法。例如:
{% if isLogin %} <a href="#">退出登录</a> {% else %} <a href="#">登录</a> {% endif %}
foreach語句使用{% for key, value in array %} ... {% endfor %}
文法.例如:
{% for article in articles %} <div class="article"> <h2>{{article.title}}</h2> <p>{{article.content}}</p> </div> {% endfor %}
include語句可以引入其他模板文件,使用{% include "file.html" %}
語法。例如:
{% include "header.html" %} <div class="content"> ... </div> {% include "footer.html" %}
三、在控制器中使用模板
我們需要在控制器中將資料傳遞給模板引擎,然後再渲染模板。
在控制器中載入模板引擎並渲染模板的程式碼如下:
<?php namespace appindexcontroller; use thinkController; class Index extends Controller { public function index() { $this->assign('title', 'Welcome to my blog'); $this->assign('isLogin', true); $this->assign('articles', [ ['title' => 'article 1', 'content' => 'something'], ['title' => 'article 2', 'content' => 'something else'] ]); return $this->fetch('index'); } }
上面的程式碼中,assign
方法將資料傳遞給模板引擎。 title
、isLogin
和articles
是我們在範本檔案中使用的變數名稱。
fetch
方法用於渲染模板文件,它的參數是模板檔名,即index.html
。
四、結語
以上就是在ThinkPHP6中使用模板引擎的基本方法。模板引擎讓我們更方便地將資料以頁面的形式展現出來,同時也提高了程式碼的可讀性。快來動手嘗試吧!
以上是如何使用ThinkPHP6的模板引擎的詳細內容。更多資訊請關注PHP中文網其他相關文章!