您的位置:首页 > 编程语言 > PHP开发

ConterReplaceBehavior.class.php模板内容替换,如__PUBLIC__

2015-11-08 12:00 513 查看
ConterReplaceBehavior.class.php查找 __PUBLIC__

protected function templateContentReplace($content) {
// 系统默认的特殊变量替换
$replace =  array(
'__TMPL__'      =>  APP_TMPL_PATH,  // 项目模板目录
'__ROOT__'      =>  __ROOT__,       // 当前网站地址
'__APP__'       =>  __APP__,        // 当前项目地址
'__GROUP__'     =>  defined('GROUP_NAME')?__GROUP__:__APP__,
'__ACTION__'    =>  __ACTION__,     // 当前操作地址
'__SELF__'      =>  __SELF__,       // 当前页面地址
'__URL__'       =>  __URL__,
'../Public'     =>  APP_TMPL_PATH.'Public',// 项目公共模板目录
'__PUBLIC__'    =>  __ROOT__.'/Public',// 站点公共目录
);
// 允许用户自定义模板的字符串替换
if(is_array(C('TMPL_PARSE_STRING')) )
$replace =  array_merge($replace,C('TMPL_PARSE_STRING'));
$content = str_replace(array_keys($replace),array_values($replace),$content);
return $content;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: