私の目標は、次の 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());
?>