W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
templateExists() — 檢查模板是否存在
bool templateExists(string template);
檢查的模板可以指定文件路徑,或者一個(gè)模板資源。
Example 14.48. templateExists()
下面例子使用$_GET['page']
來{include}
指定的模板。 如果模板不存在,則會顯示一個(gè)“page not found”的錯(cuò)誤信息。 首先是page_container.tpl
的模板內(nèi)容:
<html> <head><title>{$title}</title></head> <body> {include file='page_top.tpl'} {* 包含中間內(nèi)容的模板 *} {include file=$content_template} {include file='page_footer.tpl'} </body>
然后在PHP腳本中:
<?php // 設(shè)置文件名,如 index.inc.tpl $mid_template = $_GET['page'].'.inc.tpl'; if( !$smarty->templateExists($mid_template) ){ $mid_template = 'page_not_found.tpl'; } $smarty->assign('content_template', $mid_template); $smarty->display('page_container.tpl'); ?>
參見 display()
, fetch()
, {include}
和 {insert}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: