Smarty
外觀
開發者 | Monte Ohrt, Messju Mohr |
---|---|
當前版本 | 3.1.27(2015年6月19日[1]) |
原始碼庫 | |
類型 | 網頁模板引擎 |
許可協議 | LGPL |
網站 | smarty.net |
Smarty是一個PHP下的網頁模板系統。Smarty基本上是一種為了將不同考量的事情分離而推出的工具,這對某些應用程式是一種共通性設計策略。[2][3]
簡介
[編輯]Smarty以在文件中放置特殊的「Smarty標籤」來產生網頁內容。這些標籤會被處理並替換成其他的內容。
標籤是給Smarty的指令符,以模板定界符包住。這些指令符可以是變數,以$符號代表函數、邏輯或 流程控制語法。Smarty允許PHP程式設計師以Smarty標籤去定義可存取的函數。
Smarty意圖簡化區域化,允許PHP網頁後端邏輯與表現層(即使用者介面)分離。理想的情況下,這將降低軟體維護費用和人力。在這個研發策略之下,設計師可專注於實現表現層而不用撰寫PHP程式碼,並允許PHP程式設計師抽離出表現層並專注實現後端邏輯。
Smarty支援幾個高階模板程式的特性,包含:
以及其他特性。一些其他的模板引擎也支援這類特性。
程式碼範例
[編輯]因為 Smarty將 HTML碼與PHP程式碼分離,所以會有兩個檔案:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>{$title_text}</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body> {* This is a little comment that won't be visible in the HTML source *}
<p>{$body_text}</p>
</body><!-- this is a little comment that will be seen in the HTML source -->
</html>
在企業邏輯程式碼中,設計者能配置Smarty去使用這個模板:
define('SMARTY_DIR', 'smarty-2.6.9/' );
require_once(SMARTY_DIR . 'Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = './templates/';
$smarty->compile_dir = './templates/compile/';
$smarty->cache_dir = './templates/cache/';
$smarty->caching = false;
$smarty->error_reporting = E_ALL; // LEAVE E_ALL DURING DEVELOPMENT
$smarty->debugging = true;
$smarty->assign('title_text', 'TITLE: This is the Smarty basic example ...');
$smarty->assign('body_text', 'BODY: This is the message set using assign()');
$smarty->display('index.tpl');
並且能將PHP包涵在Smarty模板裡,像是下面這樣:
{* We can use PHP syntax in smarty template inside {php} ..{/php} *}
{php}
$contentType = strpos($_SERVER['HTTP_ACCEPT'],'application/xhtml+xml') === false ? 'text/html' : 'application/xhtml+xml';
header("Content-Type: $contentType; charset=utf-8");
{/php}
<html>
<head>
<title>{$page_title}</title>
</head>
<body>
{$body_text}
</body>
</html>
參照
[編輯]參見
[編輯]外部連結
[編輯]英文
[編輯]- Official site(頁面存檔備份,存於網際網路檔案館)
- PHP Templating with Smarty by Cezar Floroiu - Smarty tutorial
- Smarty vs. XML/XSLT(頁面存檔備份,存於網際網路檔案館) - from DevPapers.com by Sergey Makogon
- Smarty Cheat Sheet(頁面存檔備份,存於網際網路檔案館) Smarty Cheat Sheet for Templates Designers and Programmers
- Timestretch: PHP, MySQL, and Smarty Programming - Also see the PHP2 page for more.
- PHP Smarty Tools(頁面存檔備份,存於網際網路檔案館) - Using Smarty in PhpED