本文實例講述了Smarty環境配置與使用方法。分享給大家參考,具體如下:
下載Smarty(這裡以Smarty-2.6.26為例)。解壓縮下載的檔案(目錄結構還蠻複雜的)。接下來示範給大家一個安裝實例,看過應該會舉一反三的。
(1) 在根目錄下建立了新的目錄learn/,再在learn/裡建立一個目錄smarty/。將剛剛解壓縮出來的目錄的libs/拷貝到smarty/裡,再在smarty/里新建templates目錄,templates里新建cache/,templates/,templates_c/, config/。
(2) 新建一個範本檔案:index.tpl,將此檔案放在learn/smarty/templates/templates目錄下,程式碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTDHTML 4.01 <html> <head> <metahttp-equiv="Content-Type" c><pre class="brush:php;toolbar:false"><?php require 'smarty/libs/Smarty.class.php'; $smarty = new Smarty;//设置各个目录的路径,这里是安装的重点 $smarty->template_dir ="smarty/templates/templates"; $smarty->compile_dir ="smarty/templates/templates_c"; $smarty->config_dir = "smarty/templates/config"; $smarty->cache_dir ="smarty/templates/cache"; //smarty模板有高速缓存的功能,如果这里是true的话即打开caching,但是会造成网页不立即更新的问题,当然也可以通过其他的办法解决 $smarty->caching = false; $smarty->left_delimiter = "{#"; //重新定义边界,因为默认边界“{}“符,在html页面中嵌入js脚本文件编写代码段时使用的就是”{}“符,自定义边界符还可以是<{ }>, {/ /} 等 $smarty->right_delimiter = "#}"; $hello = "Hello World!";//赋值 $smarty->assign("hello",$hello);//引用模板文件 $smarty->display('index.tpl');?>
(3) 執行index.php就能看到Hello World !了。
更多關於PHP相關內容有興趣的讀者可查看本站專題:《smarty模板入門基礎教程》、《PHP模板技術總結》、《PHP數組(Array)操作技巧大全》、《PHP基於pdo操作數據庫技巧總結》、《PHP運算與運算子用法總結》、《PHP網路程式設計技巧總結》、《PHP基本語法入門教學》、《php物件導向程式設計入門教學》、《php字串(string)用法總結》 、《php+mysql資料庫操作入門教學》及《php常見資料庫操作技巧總表》
希望本文所述對大家以smarty模板為基礎的PHP程式設計有所幫助。
以上就介紹了Smarty環境配置與使用入門教程,包含了smarty方面的內容,希望對PHP教程有興趣的朋友有所幫助。