生活随笔
收集整理的這篇文章主要介紹了
Smarty的安装
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
smarty是一個PHP模板引擎,用于區分美工與程序
可以在www.smarty.net官方網站下載,有smarty 2.X、smarty 3.X,smarty 3生成的編譯后的文件很大,暫時使用Smarty 2
Smarty/libs包含了核心文件
test.php
[php]?view plaincopy print?
<?php?? ?? require('./libs/Smarty.class.php');?? ?? $smarty?=?new?Smarty;?? ?? $smarty->template_dir?=?'./templates/';?? $smarty->compile_dir?=?'./templates_c/';?? $smarty->config_dir?=?'./configs/';?? $smarty->cache_dir?=?'./cache/';?? ?? $smarty->assign('name','ChuangRain');?? ?? $smarty->display('index.html');??
index.html
[html]?view plaincopy print?
{*?Smarty?*}//注釋?? ?? hello,{$name}!//輸出?hello,ChuangRain??
如果是現在這種{}標簽,js會出問題,因為在js中會用到{},在smarty編譯時會將其當作是smarty要編譯的東西,會出錯。
例index.html
[html]?view plaincopy print?
{*?Smarty?*}?? ?? hello,{$name}!?? ?? <script>?? ?? function?test(){?? ????alert('11111111111111');?? }?? ?? test();?? ?? </script>??
運行時會出現下面的錯誤信息
Fatal error: Smarty error: [in index.html line 7]: syntax error: unrecognized tag: alert('11111111111111'); (Smarty_Compiler.class.php, line 446) in?D:\AppServ\www\Smarty\libs\Smarty.class.php?on line?1093
可以用literal來忽略{},
[html]?view plaincopy print?
{literal}?? ????<script>?? ????????function?test(){?? ??????????????...?? ????????}?? ????</script>?? {/literal}?? ??
但是一般都是修改smarty的標簽,來解決這個問題
[php]?view plaincopy print?
$smarty->left_delimiter?=?"<{";?? $smarty->right_delimiter?=?"}>";??
在模板中使用變量就可以直接用 <{$name}>
總結
以上是生活随笔為你收集整理的Smarty的安装的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。