Smarty成員變量:$default_template_handler_func

2018-10-19 15:40 更新

$default_template_handler_func

提供一個回調(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;
    }
}

?>

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號