我有一個從文件中讀取一個PHP頁面:製作與VAR和的file_get_contents模板在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!
有沒有辦法讓var的txt文件輸出他們的價值而不是他們的名字?
感謝, 布賴恩
使用include而不是file_get_contents。 – idmean
認爲這將有助於:http://stackoverflow.com/questions/6905706/php-sending-variables-to-file-get-contents –