-1

我在我的项目中创建了 2 部分:part1:php 引擎和 part2:html 模板。

在第 1 部分中,我有一个变量:

$test1 = 'This is a var.';
$test2 = 'this is another var.';

在第 2 部分:我有一个内容:

{echo $test1; echo $test2}

现在,我想创建一个函数,它可以在 part2 中加载模板并在 part1 中显示变量的值?

4

1 回答 1

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 ?>
...
于 2012-08-09T02:03:01.030 回答