打开文件并将其变为变量

时间:2016-08-15 10:07:05

标签: php

假设我有一个名为doc.txt的文件。我们可以在其中说:a line here!。我想创建一个在doc.txt中写入内容的变量。我怎么能这样做?

2 个答案:

答案 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);
?>