我使用此脚本查看.text文件的内容 -
<?php
$file = fopen("Gin_List_Website.txt","r");
if(!file)
{
echo("ERROR:cant open file .. :(");
}
else
{
echo("opened the file .. :)");
$buff = fread ($file,filesize("Gin_List_Website.txt"));
print $buff;
echo $buff;
}
?>
但我所看到的只是这一行
打开文件.. :))
我做错了什么?
答案 0 :(得分:1)
首先,您需要使用if(!$ file)更改if(!file)。
这是更简单的代码示例:
<?php
$file = fopen("Gin_list_Website.txt", "r") or die("Unable to open file!");
echo fread($file,filesize("Gin_list_Website.txt"));
fclose($file);
?>