s.m.art exhibition Smarty安裝設定方法

WBOY
發布: 2016-07-29 08:37:52
原創
1224 人瀏覽過

下載最新的Smarty:http://smarty.php.net/
目前最新版本:2.6.18
解壓縮後將目錄中的libs目錄重新命名為smarty,複製到你的網站目錄,同時在網站根目錄下建立templates和templates_c兩個目錄
建立test.php,內容如下:
include_once('./Smarty/Smarty.class.php');$smarty = new Smarty();
$smarty -> template_dir = "./templates"; //範本存放目錄
$smarty -> compile_dir = "./templates_c"; -> compile_dir = "./templates_c"; -> left_delimiter = "{{"; //左定界符
$smarty -> right_delimiter = "}}"; //右定界符
$smarty -> assign('test','OK) ;
$smarty -> display('test.html');
?>
給templates_c權限755
在templates目錄下新test.html:

在templates目錄下新test.html:




{{$test}}


開啟test.php,如果看到OK就代表你的smarty安裝成功了!

以上就介紹了s.m.art exhibition Smarty安裝配置方法,包括了s.m.art exhibition方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板