1.public function index(){
$this->display()
// 預設輸出的是index.html模板
2.public function index(){
$this->display('select')
輸出的是select.html模板;如果是select.htm 用$this->display('select')是無法輸出的,需要經進行配置
3.配置 tmpl_template_suffix(模板檔案字尾名)
根目錄/index/conf/config.php (只對index下的目錄有效)
**:
<?phpreturn
array(
//模板檔案字尾名
'tmpl_template_suffix
' =>'
.htm')
?>
根目錄/conf/config.php (對所有目錄有效index、admin)
<?php$config =array(
'load_ext_file
'=>'
fun'
,
'tmpl_parse_string
' =>array(
'__public__
' => __root__.'
//tpl/public',
),'tmpl_template_suffix
' =>'
.htm');
return array_merge(include('
./conf/config.php
'),$config);
?>
Thinkphp 模板 原樣輸出
可以使用literal標籤來防止模板標籤被解析,例如 value1 value2 value3 上面的if標籤被literal標籤包含,因此if標籤裡面的內容並不會被模板引擎解析,而是保持原樣輸出。如果你的php標籤中需要輸出類似 或者 xml標籤的情況,可以通過新增literal標籤解決混淆問題,...
Thinkphp 框架模板變數及模板輸出
thinkphp框架 模板操作變數輸出 執行方法並輸出返回值 執行方法不輸出 輸出session變數 輸出cookie變數 輸出配置引數 輸出語言變數 輸出get變數 輸出post變數 輸出常量 模板輸出 1 直接呼叫預設 index 操作模板 this display 對應winxin tpl d...
輸入輸出和模板
輸入輸出流相關的類 istream 是用於輸入的流類,cin是該類的物件。ostream 是用於輸出的流類,cout就是該類的物件 ifstream 是用於從檔案讀取資料的類。ofstream 是用於向檔案寫入資料的類。iostream 是既能用於輸入,又能用於輸出的類。fstream 是既能從檔案...