Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中创建了 2 部分:part1:php 引擎和 part2:html 模板。
在第 1 部分中,我有一个变量:
$test1 = 'This is a var.'; $test2 = 'this is another var.';
在第 2 部分:我有一个内容:
{echo $test1; echo $test2}
现在,我想创建一个函数,它可以在 part2 中加载模板并在 part1 中显示变量的值?
最简单的方法:
foo.php
<?php $test1 = 'This is a var.'; $test2 = 'this is another var.'; include 'foo.html';
foo.html
... <?php echo $test1 ?> <?php echo $test2 ?> ...