tp5模板中引入文件include方法引入的文件中使用了自定义标签导致无法解析问题
作者:互联网
tp5框架下:thinkphp\library\think\Template.php
原方法:
/**
* 解析模板中的include标签
* @access private
* @param string $content 要解析的模板内容
* @return void
*/
private function parseInclude(&$content)
{
$regex = $this->getRegex('include');
$func = function ($template) use (&$func, &$regex, &$content) {
if (preg_match_all($regex, $template, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
$array = $this->parseAttr($match[0]);
$file = $array['file'];
unset($array['file']);
// 分析模板文件名并读取内容
$parseStr = $this->parseTemplateName($file);
foreach ($array as $k => $v) {
// 以$开头字符串转换成模板变量
if (0 === strpos($v, '$')) {
$v = $this->get(substr($v, 1));
}
$parseStr = str_replace('[' . $k . ']', $v, $parseStr);
}
$content = str_replace($match[0], $parseStr, $content);
// 再次对包含文件进行模板分析
$func($parseStr);
}
unset($matches);
}
};
// 替换模板中的include标签
$func($content);
return;
}
更新后:
/**
* 解析模板中的include标签
* @access private
* @param string $content 要解析的模板内容
* @return void
*/
private function parseInclude(&$content)
{
$regex = $this->getRegex('include');
$func = function ($template) use (&$func, &$regex, &$content) {
if (preg_match_all($regex, $template, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
$array = $this->parseAttr($match[0]);
$file = $array['file'];
unset($array['file']);
//解析变量
if (0 === strpos($file, '$')) {
if(strpos($file,'/')!==false){
$val= $this->get(substr($file, 1,strpos($file,'/')-1));
$file =$val.substr($file, strpos($file,'/'));
}else{
$file = $this->get(substr($file, 1));
}
}
// 分析模板文件名并读取内容
$parseStr = $this->parseTemplateName($file);
foreach ($array as $k => $v) {
// 以$开头字符串转换成模板变量
if (0 === strpos($v, '$')) {
$v = $this->get(substr($v, 1));
}
$parseStr = str_replace('[' . $k . ']', $v, $parseStr);
}
$content = str_replace($match[0], $parseStr, $content);
// 再次对包含文件进行模板分析
$func($parseStr);
}
unset($matches);
}
};
// 替换模板中的include标签
$func($content);
return;
}
主要增加了一段解析变量的代码
//解析变量
if (0 === strpos($file, '$')) {
if(strpos($file,'/')!==false){
$val= $this->get(substr($file, 1,strpos($file,'/')-1));
$file =$val.substr($file, strpos($file,'/'));
}else{
$file = $this->get(substr($file, 1));
}
}
如果引用的文件中使用了自定义标签
更新前在html中这样写会解析不了变量$PATH(控制器中定义的)
{include file="$PATH/tel/head.html" /}
更新后可以正常解析
标签:文件,自定义,parseStr,content,strpos,file,引入,array,模板 来源: https://blog.csdn.net/weixin_39347356/article/details/122599500