Home >php教程 >php手册 >ThinkPHP让../Public在模板不解析(直接输出)的方法 原创

ThinkPHP让../Public在模板不解析(直接输出)的方法 原创

WBOY
WBOYOriginal
2016-06-06 19:41:251157browse

这篇文章主要介绍了ThinkPHP让../Public在模板不解析,直接输出的方法,涉及通过模板常量设置修改默认变量替换的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了ThinkPHP让../Public在模板不解析的方法。分享给大家供大家参考。具体如下:

问题:

模板中包含../Public需要直接输出,但是../Public会被直接替换为当前公共模板目录,,最终输出为:/项目目录/Tpl/default/Public/

解决方法:

在配置文件config.php中添加模板常量设置:

'TMPL_PARSE_STRING' => array( '../Public' =>"../Public", ) // 模板引擎要自动替换的字符串,必须是数组形式。

这里将../Public设置成原样输出即可。

希望本文所述对大家的ThinkPHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn