程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php5與mysql5 web 開發技術詳解-12 Smarty與模板技術

php5與mysql5 web 開發技術詳解-12 Smarty與模板技術

編輯:關於PHP編程

1、MVC簡介        模式的內部運行著系統核心的商業邏輯;        視圖處理系統的格式化輸出;        控制器處理輸入和與控制器進行通信   2、常用模板系統       Smarty \ FastTemplate\Smart       ....   3、Smarty概述       優點和開發特性....   4、Smarty安裝和配置   5、Smrty開發基礎       變量與變量格式化:            變量來源:            首字母大寫:<?{ $title| capitalize}?>            計算字符個數:<?{ $title| count_words}?>             日期處理:<?{ $filed| "$B %e, %y"}?>       <?{ $Smarty.now | date_format: "%Y-%m-%d %H:%M:%S"}            過濾字符:<?{ $title| strip_tags}?>            截取字串:<?{ $title|trancate:20:"..." | false }?>           nl2br修飾符:<?{ $text | nl2br}?>   6、控制結構       分支:if   elseif  else /if              比較運算符:  eq (= ), neq(!=) ,gte(>=)  ,not  (<=)      循環結構:             foreach             section 7、緩存   8、深入開發       register_function       register_block       register_modifier       <?{php}?><?{/php}?>       重要修飾符:            default            strip_tags            literal            nl2br            truncate      生成靜態頁:www.2cto.com            $output =  $smarty->fetch('tmp.html');            fwrite($fp ,$output );  

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