ファイルから読み取っているphpページがあります:
$name = "World";
$file = file_get_contents('html.txt', true);
$file = file_get_contents('html.txt', FILE_USE_INCLUDE_PATH);
echo $file;
html.txt には次のものがあります。
Hello $name!
サイトにアクセスすると、「Hello $name!」と表示されます。Hello World! ではありません。
txt ファイル内の var を取得して、名前ではなく値を出力する方法はありますか?
ありがとう、ブライアン