利用include 輸出html內容

2021-09-02 18:52:22 字數 887 閱讀 8172

知識點:smarty 是php的乙個引擎模板,可以更好的進行邏輯與現實的分離,即我們常說的mvc,這個引擎的作用就是將c分離出來

引入檔案:include './smarty-3.1.30/smarty.class.php';

引入檔案有三種方法:include require require_once

都是將檔案引入到當前檔案

include如果引用的檔案不存在,如果繼續往下執行,就會報乙個warning 的錯誤

require如果引用的檔案不存在,報fatai error 的錯誤,不會在繼續執行,終止執行

require_once 會自動判斷檔案是否已經引入,如果引入,不再重複執行(保證引入的檔案只能被引入一次,不會重複引入)

定義smarty所使用的檔案目錄 :`define(『smarty_root』,』./』);

$smarty = new smarty();
指定模板檔案所在路徑

$smarty->template_dir = smarty_root . '/template';
指定模板編譯後的檔案所在路徑

$smarty->compile_dir = smarty_root . '/template_c';
`

向模板傳遞變數

$smarty->assign('name','張三');
指定模板檔案顯示

$smarty->display('index.tpl');
最後輸出結果是 張三

利用 Python 輸出菱形

在python學習過程中會遇到各種問題,在本次學習過程中遇到乙個小小的問題,就是用python輸出乙個菱形,怕以後忘記,故寫此筆記以記之。n int input 請輸入n的值 print 輸出結果為 總行數2n 1 for h in range 1,2 n 菱形上半部分,if h n s n 前半部...

ASP動態輸出html

您現在的位置 首頁 if bigclassid then dim dh set rs server.createobject adodb.recordset sql select from bigclass where bigclassid bigclassid rs.open sql,conn,1...

原樣輸出html標籤

有幾種在頁面輸出html頁面內容的較為快捷的方式 暫時發現三種 1.2.不被解析的 3.第一種 script type text html style display block divclass banner text p 5 divclass container divclass banner ...