变量的输出使用原生方式

This commit is contained in:
TOP糯米 2020-06-01 19:47:43 +08:00
parent 0fd2530dcd
commit 7ba0d0c928
1 changed files with 2 additions and 7 deletions

View File

@ -166,13 +166,8 @@ class Engine
$replace[] = '<?php echo (' . ltrim($matches[1][$i], ':') . '); ?>';
} elseif ($start == '@') { // 输出常量
$replace[] = '<?php echo (' . ltrim($matches[1][$i], '@') . '); ?>';
} else { // 输出变量,自动拼接$
if (strstr($matches[1][$i], '.')) {
$content = str_replace('.', '[\'', $matches[1][$i]) . '\']';
} else {
$content = $matches[1][$i];
}
$replace[] = '<?php echo ($' . $content . '); ?>';
} else { // 输出变量
$replace[] = '<?php echo (' . $matches[1][$i] . '); ?>';
}
}
$template = str_replace($search, $replace, $template);