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