codecamp

Smarty成员变量$use_include_path

$use_include_path

设置Smarty把include_path 加入文件资源的处理器中, 以及加入到$template_dir 的搜索目录中。 本设置还会影响$plugins_dir 使用时也搜索include_path。

说明

设计程序中,不能让你的应用系统依赖于include_path,也就是“依赖于实现”, 这将极大的降低你的系统(和Smarty)的性能。

开启了use_include_path后, $template_dir 和 $plugins_dir 将会以下面的方式来寻找文件。

  • 遍历($template_dir 或 $plugins_dir 的)$directory目录数组。

  • $directory中的目录都是相对于 当前工作目录的, 查询需要的文件是否在目录中,如果找到文件,则返回。

  • 遍历include_path内的$path路径。

  • $directory中的目录都是相对于$path的(可能是 当前工作目录), 查询需要的文件是否在目录中,如果找到文件,则返回。

  • 尝试使用default_handler或者失败。

这意味着任何相对于当前工作目录的目录/文件都会被搜索到, 它将在include_path中检查任何可能的目录/文件。

说明

Smarty不会过滤include_path的元素,也就是说在你的包含路径中的“.:”会使得当前工作目录被扫描两次。

参见 资源 和 $template_dir

Smarty成员变量:$trusted_dir
Smarty成员变量:$use_sub_dirs
温馨提示
下载编程狮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; }