codecamp

Smarty成员方法:templateExists()

Name

templateExists() — 检查模板是否存在

说明

bool templateExists(string template);

检查的模板可以指定文件路径,或者一个模板资源。

Example 14.48. templateExists()

下面例子使用$_GET['page']{include}指定的模板。 如果模板不存在,则会显示一个“page not found”的错误信息。 首先是page_container.tpl的模板内容:

<html>
<head><title>{$title}</title></head>
<body>
{include file='page_top.tpl'}

{* 包含中间内容的模板 *}
{include file=$content_template}

{include file='page_footer.tpl'}
</body>

然后在PHP脚本中:

<?php

// 设置文件名,如 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}


Smarty成员方法:setTemplateDir()
Smarty成员方法:unregisterCacheResource()
温馨提示
下载编程狮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; }