我的目标是在服务器上自动创建一个包含以下 html/php 的文件,它确实会这样做,但是它也包括 php 包含,因此在构建页面时它也包含包含中的所有内容。
我希望include("../includes/right.html");
在生成的页面中独处,但我希望解析其他 php 变量。
<?php
// Start the buffering //
ob_start();
?>
<?php echo $name; ?>
test text line one
<?php include("../includes/right.html"); ?>
test text line two
<?php
// Putting content buffer into file //
file_put_contents('mypage.html', ob_get_contents());
?>