我有一个从文件中读取的 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!” 而不是你好世界!
有没有办法让 txt 文件中的 var 输出它们的值而不是它们的名称?
谢谢,布赖恩