php是 嵌入式HTML腳本語言,為了將HTML和php代碼分離,即所謂的邏輯層和表現層,這就是模板引擎的目的。為了達到該目的 模板引擎需具備的功能有: 1.存儲變量; 2.讀取模板文件; 3.結合前兩個生成輸出。 Code如下: test01.php <?php $name='xiaoshenge'; ?> test02.php <html> <head><title>test</title></head> <body> name=<?php echo $name; ?> </body> </html> test03.php <?php include'test01.php'; include'test02.php; ?> 當然這裡只是簡單的模擬如何實現php模板引擎的功能,在php開源社區裡著名的smarty就是封裝了上面的功能。保存數據->加載模板->編譯生成輸出文件。有關 smarty的應用具體參考手冊,這裡只是解釋其功能原理。 記錄一下smarty緩存遇到的問題。 如果開啟smarty緩存,第一次執行時會將其編譯好的輸出文件保存到cache目錄中,在程序中通過smarty的is_cache()函數檢測其 cache文件是否過期,若過期會更新緩存,如果沒有過期會自動調用cache文件,省去編譯的過程。檢測cache過期是看模板文件是否在指定的生命周期內是否更改,這裡的更改是是通過檢測文件的最近修改時間實現的,不是通過檢測模板文件內容。 阻止一個模板文件的 整篇被緩存 : index.php: require('Smarty.class.php'); $smarty = new Smarty; $smarty->caching = true; function smarty_block_dynamic($param, $content, &$smarty) { return $content; } $smarty->register_block('dynamic', 'smarty_block_dynamic', false); $smarty->display('index.tpl'); index.tpl: Page created: {"0"|date_format:"%D %H:%M:%S"} {dynamic} Now is: {"0"|date_format:"%D %H:%M:%S"} ... do other stuff ... {/dynamic} 當重新加載這個頁面,你將會注意到這兩個日期不同。一個是“動態“,一個是“靜態”。你能夠在{dynamic}...{/dynamic}之間作任何事情,並且保證它將不會像剩下的頁面一樣被緩存。