這篇文章主要介紹了PHP模板引擎Smarty之配置文件在模板變量中的使用方法,結合實例形式分析了配置文件變量的具體使用步驟與相關技巧,需要的朋友可以參考下
本文實例敘述了PHP模板引擎Smarty之設定檔在模板變數中的使用方法。分享給大家供大家參考,具體如下:
設定檔在模板中的作用是:給前端設計頁面定義變量,主要控制的是模板的外觀,與 PHP 程式無關。
使用步驟:
1、使用$tpl->configs_dir="目錄" //指定設定檔存放的目錄;
2 、在模板中要使用<{configs_load file="設定檔"}> 載入f設定文件,如果有區域的話,可以使用section="區域" 來指定區域
設定區域的目的是:為了不同的檔案調用不同區域的設定檔變數。
在設定檔中是透過「[區域名稱]」來指定區域的,其他沒有指定區域的變數均為共有變量,即每一個頁面都可以使用。
3、在指定的目錄下建立設定檔。
下面透過一個實例來示範,實例想法:主檔案index.php 呼叫模板檔案index.tpl,在index.tpl 中設定設定檔變數(與PHP 程式無關)
#init.inc.php Smart範本引擎初始化檔案
<?php define('ROOT_PATH', dirname(__FILE__)); //网站根目录 require ROOT_PATH.'/libs/Smarty.class.php'; //引入 Smart 模板引擎 $_tpl = new Smarty(); //初始化一个对象 $_tpl->template_dir = ROOT_PATH.'/tpl/'; //重新设置网站的模板目录 $_tpl->compile_dir = ROOT_PATH.'./com/'; //重新设置网站的编译文件目录 $_tpl->config_dir = ROOT_PATH.'/configs/'; //重新设置网站的配置文件目录 $_tpl->left_delimiter = '<{'; //重新设置网站的左定界符 $_tpl->right_delimiter = '}>'; //重新设置网站的右定界符 ?>
#index.php
<?php require 'init.inc.php'; //引入模板初始化文件 global $_tpl; $_tpl->display('index.tpl'); //载入模板文件 ?>
index.tpl 設定變數的使用方式有兩種:
一、<{#設定變數#}>;
二、<{$smart .config.設定變數}>
<{config_load file="view.conf" section="one"}> <!-- view.conf文件不能写完整路径,因为在初始化文件中已经指定,section="one" 代表加载[one]区域 --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>配置文件在模板变量中的使用</title> </head> <body> <table border="<{#border#}>" align="<{#align#}>" width="<{#tabw#}>"> <tr bgcolor="<{#bgcolor#}>" align="<{#align#}>"> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <tr> <tr> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <tr> <tr> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <td>aaaa</td> <tr> <tr> <td colspan="<{#colspan#}>" align="<{#align#}>"> 区域变量的显示: <{#aa#}><br /> <{#bb#}><br /> <{#cc#}><br /> </td> </tr> </table> </body> </html>
/configs/view.conf 設定檔
##
border=2 tabw=600 tabh=500 bgcolor=yellow align=center [one] colspan=4 aa=one section [two] bb=two section [three] cc=three section
php###使用curl透過代理實作取得資料的方法################ ##php### pdo oracle中文亂碼的解決方法實例分析###################php### 函數使用可變數量的參數方法##### ######################
以上是PHP模板引擎Smarty之設定檔在模板變數中的用法及實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!