<Komple PHP Dosya Sistemi Referans
Tanımı ve Kullanımı
fgets() işlevi, bir açık dosyasındaki bir satır döndürür.
fgets() işlevi, belirli uzunlukta, yeni bir satırda geri durakları veya EOF, hangisi daha önce gelir.
Bu işlev aksi takdirde FALSE döndürür.
Sözdizimi
fgets(file,length)
Parametre | Açıklama |
---|---|
file | Gereklidir. okuma dosyayı belirtir |
length | İsteğe bağlı. okumak için bayt sayısını belirtir. Standart 1024 bayt. |
Örnek 1
<?php
$file = fopen("test.txt","r");
echo fgets($file);
fclose($file);
?>
kodun çıktısını göreceğiz:
Hello, this is a test file.
Örnek 2
dosyayı satır satır okuyun:
<?php
$file = fopen("test.txt","r");
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