程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php簡單smarty入門程序實例

php簡單smarty入門程序實例

編輯:關於PHP編程

     首先要有3個文件夾configs、templates、templates_c,在configs文件夾中有一個配置文件:test.conf,代碼:

    1 2 3 4 title = Welcome to Smarty! cutoff_size = 40 [setup] bold = true

    templates中有模板文件:test.htm:

    1 2 3 4 5 6 7 8 <html> <head> <title>Smarty Test</title> </head> <body> <H1>Hello, {$Name}</H1> </body> </html>

    php文件代碼:

    1 2 3 4 5 6 <?php require 'libs/Smarty.class.php'; //包含Smarty類庫文件 $smarty = new Smarty; //創建一個新的Smarty對象 $smarty->assign("Name","Simon"); //對模版中的變量賦值 $smarty->display('test.htm'); //顯示頁面 ?>

    運行後顯示的頁面代碼:

    1 2 3 4 5 6 7 8 <html> <head> <title>Smarty Test</title> </head> <body> <H1>Hello, Simon</H1> </body> </html>

    運行之後,還在templates_c文件夾中生成一個php文件:

    1 2 3 4 5 6 7 8 9 10 11 12 13 <?php /* Smarty version 2.6.22, created on 2009-03-19 13:20:00 compiled from test.htm */ ?> <html> <head> <title>Smarty Test</title> </head> <body> <H1>Hello, <?php echo $this->_tpl_vars['Name']; ?> </H1> </body> </html>

    這個文件就是浏覽所顯示出來的效果。

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