程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> Smarty的安裝配置

Smarty的安裝配置

編輯:PHP綜合

下載最新的Smarty:http://smarty.php.net/

當前最新版本:2.6.18

解壓後將目錄中的libs目錄重命名為smarty,復制到你的網站目錄,同時在網站根目錄下建立templates和templates_c兩個目錄

建立test.php,內容如下:

<?php

include_once('./Smarty/Smarty.class.php');$smarty = new Smarty();

$smarty -> template_dir = "./templates"; //模板存放目錄

$smarty -> compile_dir = "./templates_c"; //編譯目錄

$smarty -> left_delimiter = "{{"; //左定界符

$smarty -> right_delimiter = "}}"; //右定界符

$smarty -> assign('test','OK');

$smarty -> display('test.html');

?>

給templates_c權限755

在templates目錄下新建test.html:

<html>

<head>

</head>

<body>

{{$test}}

</body>

</html>

打開test.php,如果看到OK就說明你的smarty安裝成功了!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved