W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
提供一個回調(diào)函數(shù),這個回調(diào)函數(shù)將在從資源里面無法獲取到模板的時候調(diào)用。
該設(shè)置一般在當(dāng)模板是文件資源的時候起作用。 當(dāng)找不到資源自身的時候,該設(shè)置不會調(diào)用,而是會拋出SmartyException異常。
Example 13.5. $default_template_handler_func
<?php $smarty = new Smarty(); $smarty->default_template_handler_func = 'my_default_template_handler_func'; /** * 默認(rèn)模板處理函數(shù) * * 當(dāng)Smarty的文件資源無法載入需要的文件時調(diào)用。 * * @param string $type 資源類型 (如:"file", "string", "eval", "resource") * @param string $name 資源名稱 (如:"foo/bar.tpl") * @param string &$content 模板的內(nèi)容 * @param integer &$modified 模板修改時間 * @param Smarty $smarty Smarty實例 * @return string|boolean 返回文件路徑或布爾值, * 布爾值true表示$content 和 $modified已經(jīng)賦值, * 布爾值false表示沒有默認(rèn)模板可供載入。 */ function my_default_template_handler_func($type, $name, &$content, &$modified, Smarty $smarty) { if (false) { // 返回文件路徑 return "/tmp/some/foobar.tpl"; } elseif (false) { // 直接返回模板內(nèi)容 $content = "the template source"; $modified = time(); return true; } else { // 告訴Smarty無法找到模板 return false; } } ?>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: