假设我有一个名为doc.txt的文件。我们可以在其中说:a line here!
。我想创建一个在doc.txt中写入内容的变量。我怎么能这样做?
答案 0 :(得分:2)
尝试 file_get_contents 。
<?php
$homepage = file_get_contents('doc.txt');
echo $homepage;
?>
尝试使用谷歌,我相信如果你至少尝试过,你会发现这个。
答案 1 :(得分:1)
<?php
$myfile = fopen("doc.txt", "r") or die("Unable to open file!");
echo fgets($myfile);
fclose($myfile);
?>