<Komple PHP Dosya Sistemi Referans
Tanımı ve Kullanımı
feof() fonksiyonu kontrol eder, eğer "end-of-file" (EOF) ulaşıldı.
Bir hata oluşursa, bu işlevi DOĞRU verir, ya da EOF ulaşıldı eğer. Aksi takdirde FALSE döndürür.
Sözdizimi
feof(file)
Parametre | Açıklama |
---|---|
file | Gereklidir. kontrol etmek açık dosyayı belirtir |
İpuçları ve Notlar
Tip: feof() işlevi bilinmemektedir uzunlukta veri döngü için yararlıdır.
Örnek
<?php
$file = fopen("test.txt", "r");
//Output a line of the file until the end is reached
while(! feof($file))
{
echo fgets($file). "<br />";
}
fclose($file);
?>
kodun çıktısını göreceğiz:
Hello, this is a test file.
There are three lines here.
This is the last line.
<Komple PHP Dosya Sistemi Referans