codecamp

Smarty成员变量:$default_template_handler_func

$default_template_handler_func

提供一个回调函数,这个回调函数将在从资源里面无法获取到模板的时候调用。

温馨提示:

该设置一般在当模板是文件资源的时候起作用。 当找不到资源自身的时候,该设置不会调用,而是会抛出SmartyException异常。

Example 13.5. $default_template_handler_func

<?php

$smarty = new Smarty();
$smarty->default_template_handler_func = 'my_default_template_handler_func';

/**
 * 默认模板处理函数
 *
 * 当Smarty的文件资源无法载入需要的文件时调用。
 * 
 * @param string   $type     资源类型 (如:"file", "string", "eval", "resource")
 * @param string   $name     资源名称 (如:"foo/bar.tpl")
 * @param string  &$content  模板的内容
 * @param integer &$modified 模板修改时间
 * @param Smarty   $smarty   Smarty实例
 * @return string|boolean   返回文件路径或布尔值,
 * 布尔值true表示$content 和 $modified已经赋值,
 * 布尔值false表示没有默认模板可供载入。
 */
function my_default_template_handler_func($type, $name, &$content, &$modified, Smarty $smarty) {
    if (false) {
        // 返回文件路径
        return "/tmp/some/foobar.tpl";
    } elseif (false) {
        // 直接返回模板内容
        $content = "the template source";
        $modified = time();
        return true;
    } else {
        // 告诉Smarty无法找到模板
        return false;
    }
}

?>

Smarty成员变量:$default_config_handler_func
Smarty成员变量:$direct_access_security
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }