我想加载不同的 .php 页面(.php 包含 html 并且需要替换一些 php 变量。
例如:
load.php
$输出 = '';
加载 test.php 并将 $this->name 替换为值。
将 html 存储到 $output
加载 test1.php 并将 $this->name 替换为值。
附加到前一个 $output 变量
所以最后我会有一个 $output 变量有所有更新的 html
任何建议表示赞赏。
测试.php >
<html>
<?php echo $this->name; ?>
</html>
test1.php >
<html>
<?php echo $this->address; ?>
</html>