1. 程式人生 > >PHP之smarty框架程式碼使用流程

PHP之smarty框架程式碼使用流程

Smarty使用7步走

1)複製libs裡邊資料夾到專案目錄www中,並改名為smarty

2)建立資料夾templates (html靜態頁面)

3)  建立index.PHP檔案

4)在php頁面中引入smarty3入口檔案   include  smarty.class.php;

5)建立smarty物件    $smarty=new Smarty();

6)通過assign方法分配變數到模板檔案  assign()

7)通過display

方法顯示輸出模板內容    display()

程式碼實現:

<?php
header("content-type:text/html;charset=utf-8");
// +----------------------------------------------------------------------
// |授課名稱:PHP之smarty程式碼實現
// +----------------------------------------------------------------------
// | 時間:2018年9月4日20:00:04
// +----------------------------------------------------------------------
// | Author: Mr.hao 部落格地址:http://blog.csdn.net/haoyunyun888
// +----------------------------------------------------------------------
//引入檔案
include "Smarty.class.php";//類
$smarty=new Smarty();//例項化物件
$smarty->assign("username","師梓健");//賦值
$smarty->assign("sex","男");//賦值
$smarty->assign("address","山西臨汾");//賦值
$smarty->display('aa.html');//顯示

目錄結構: