我试图将php文件从服务器复制到服务器中其他路径的html文件中。 php文件包含" echo $ var"在复制之后,它就不会复制" echo"只有html。
示例:
$file = file_get_contents("../view_details.php");
file_put_contents($full_date, $file);
view_details.php文件:
echo "hello world";
将以html
返回echo "hello world";
在页面源代码中而不是hello world本身..
答案 0 :(得分:0)
如果你要包含一个php文件并希望它执行,为什么不使用include()
?
答案 1 :(得分:-1)
而非此file = file_get_contents("http://www.test.view_details.php");
尝试使用此$file = file_get_contents("view_details.php");