thinkphp中display能傳參數(shù)嗎
thinkphp中display能傳參數(shù)嗎
阿波羅的戰(zhàn)車
2019-03-01 07:03:45
TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超13個(gè)贊
display()在默認(rèn)輸出對應(yīng)的模板時(shí),可以不用攜帶參數(shù);同時(shí)其靈活的支持更多攜帶參數(shù)的操作:
輸出當(dāng)前模塊的其他操作模板
1 | $this ->display( '操作名' ); |
輸出其他模塊的操作模板
1 | $this ->display( '[分組名:]模塊名:操作名' ); |
輸出其他主題的操作模板
1 | $this ->display( '主題名@模塊名:操作名' ); |
全路徑輸出模板
1 | $this ->display( '模板文件名' ); |
指定頁面編碼
1 | $this ->display( '模板' , '編碼' ); |
輸出其他格式模板
1 | $this ->display( '模板' , '模板格式' ); |
隨著版本的升級,不排除更多參數(shù)支持的可能
舉報(bào)