我使用這個腳本,看.text的文件的內容 -爲什麼我不能看到我的.txt文件,從這個php腳本
<?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;
}
?>
但所有我看到的是這一行
opened the file .. :)
我在做什麼錯?
如果你只是想完整的文件,爲什麼不使用'file'或'file_get_contents'? – chris85
如果(!文件)更改爲if(!$文件) –
@bharatparmar我錯過了,現在它給出錯誤.. –