我正在编写一些可以从 .txt 文件中读取并在网页上显示的代码。
我的初始代码存在问题,因为它会读取任何文本,并且会删除文档中的任何内容。
我的原始代码:
function readIn(){
$input = fopen("input.txt", "r"); //Open the file, save opened file in input
$line = fgets($input);
fclose($input);
return $line
}
它只有在我放入一个 While 循环来遍历每一行时才开始工作
function readIn(){
$input = fopen("input.txt", "r"); //Open the file, save opened file in input
$fullText = ""; //Variable full text
while(!feof($input)){
$line = fgets($input);
$fullText = $fullText . $line;
}
fclose($input);
return $fullText;
}
echo readIn();