本文執行個體講述了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目錄下,代碼如下:
<?phprequire '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教程有興趣的朋友有所協助。