如何在html文件中使用php代码?

时间:2012-08-09 01:58:57

标签: php function templates loading

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

在part1中我有一个变量:

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

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

{echo $test1; echo $test2}

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

1 个答案:

答案 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 ?>
...