我在我的项目中创建了2个部分: 第1部分:php引擎和第2部分:html模板。
在part1中我有一个变量:
$test1 = 'This is a var.';
$test2 = 'this is another var.';
和第2部分:我有一个内容:
{echo $test1; echo $test2}
现在,我想创建一个函数,它可以在part2中加载模板并在part1中显示变量的值?
答案 0 :(得分:6)
最简单的方法:
foo.php
<?php
$test1 = 'This is a var.';
$test2 = 'this is another var.';
include 'foo.html';
foo.html
...
<?php echo $test1 ?>
<?php echo $test2 ?>
...