fgets

(PHP 4, PHP 5)

fgetsЧитает строку из файла

Описание

string fgets ( resource $handle [, int $length ] )

Читает строку из файлового указателя.

Список параметров

handle

Указатель на файл должен быть корректным и указывать на файл, успешно открытый функциями fopen() или fsockopen() (и все еще не закрытым функцией fclose()).

length

Чтение заканчивается по достижении length - 1 байт, если встретилась новая строка (которая включается в возвращаемый результат) или конец файла (что встретилось первым). Если длина не указана, чтение из потока будет продолжаться до тех пор, пока не достигнет конца строки.

Замечание:

До версии PHP 4.3.0, опущение этого параметра означало, что длина строки будет равна 1024 символам. Если большинство строк в файле больше 8 килобайт, в целях производительности вашего скрипта стоит указать максимальную длину строки.

Возвращаемые значения

Возвращает строку размером в length - 1 байт, прочитанную из дескриптора файла, на который указывает параметр handle. Если данных для чтения больше нет, то возвращает FALSE.

В случае возникновения ошибки возвращает FALSE.

Список изменений

Версия Описание
4.3.0 fgets() теперь безопасна для обработки бинарных данных
4.2.0 Параметр length стал необязательным

Примеры

Пример #1 Построчное чтение файла

<?php
$handle 
= @fopen("/tmp/inputfile.txt""r");
if (
$handle) {
    while ((
$buffer fgets($handle4096)) !== false) {
        echo 
$buffer;
    }
    if (!
feof($handle)) {
        echo 
"Error: unexpected fgets() fail\n";
    }
    
fclose($handle);
}
?>

Примечания

Замечание: Если у вас возникают проблемы с распознаванием PHP концов строк при чтении или создании файлов на Macintosh-совместимом компьютере, включение опции auto_detect_line_endings может помочь решить проблему.

Замечание:

Программисты, привыкшие к семантике 'C' функции fgets(), должны принимать во внимание разницу в том, каким образом возвращается признак достижения конца файла (EOF).

Смотрите также

  • fgetss() - Прочитать строку из файла и отбросить HTML-теги
  • fread() - Бинарно-безопасное чтение файла
  • fgetc() - Считывает символ из файла
  • stream_get_line() - Получает строку из потокового ресурса до указанного разделителя
  • fopen() - Открывает файл или URL
  • popen() - Открывает файловый указатель процесса
  • fsockopen() - Открывет соединение с интернет сокетом или доменным сокетом Unix
  • stream_set_timeout() - Устанавливает значение тайм-аута на потоке

Коментарии

I think that the quickest way of read a (long) file with the rows in  reverse order is

<?php
$myfile 
'myfile.txt';
$command "tac $myfile > /tmp/myfilereversed.txt";
passthru($command);
$ic 0;
$ic_max 100// stops after this number of rows
$handle fopen("/tmp/myfilereversed.txt""r");
while (!
feof($handle) && ++$ic<=$ic_max) {
   
$buffer fgets($handle4096);
   echo 
$buffer."<br>";
}
fclose($handle);
?>

It echos the rows while it is reading the file so it is good for long files like logs.

Borgonovo
2006-03-09 05:44:02
http://php5.kiev.ua/manual/ru/function.fgets.html
There's an error in the documentation:

The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen() (and not yet closed by fclose()).

You should also add "popen" and "pclose" to the documentation. I'm a new PHP developer and went to verify that I could use "fgets" on commands that I used with "popen".
2007-07-10 17:23:32
http://php5.kiev.ua/manual/ru/function.fgets.html
Автор:
fscanf($file, "%s\n") isn't really a good substitution for fgets(), since it will stop parsing at the first whitespace and not at the end of line!

(See the fscanf page for details on this)
2007-08-21 14:36:50
http://php5.kiev.ua/manual/ru/function.fgets.html
Автор:
A better example, to illustrate the differences in speed for large files, between fgets and stream_get_line.

This example simulates situations where you are reading potentially very long lines, of an uncertain length (but with a maximum buffer size), from an input source.

As Dade pointed out, the previous example I provided was much to easy to pick apart, and did not adequately highlight the issue I was trying to address.

Note that specifying a definitive end-character for fgets (ie: newline), generally decreases the speed difference reasonably significantly. 

#!/usr/bin/php
<?php
        $plaintext
=file_get_contents('http://loripsum.net/api/60/verylong/plaintext');  # Should be around 90k characters
       
$plaintext=str_replace("\n"," ",$plaintext); # Get rid of newlines

       
$fp=fopen("/tmp/SourceFile.txt","w");
        for(
$i=0;$i<100000;$i++) {
               
fputs($fp,substr($plaintext,0,rand(4096,65534)) . "\n");
        }
       
fclose($fp);

       
$fp=fopen("/tmp/SourceFile.txt","r");
       
$start=microtime(true);
        while(
$line=fgets($fp,65535)) {
               
1;
        }
       
$end=microtime(true);
       
fclose($fp);
       
$delta1=($end $start);

       
$fp=fopen("/tmp/SourceFile.txt","r");
       
$start=microtime(true);
        while(
$line=stream_get_line($fp,65535)) {
               
1;
        }
       
$end=microtime(true);
       
fclose($fp);
       
$delta2=($end $start);

       
$pdiff=$delta1/$delta2;
        print 
"stream_get_line is " . ($pdiff>1?"faster":"slower") . " than fgets - pdiff is $pdiff\n";
?>

$ ./testcase.php 
stream_get_line is faster than fgets - pdiff is 1.760398041785

Note that, in a vast majority of situations in which php is employed, tiny differences in speed between system calls are of negligible importance.
2015-04-08 06:03:55
http://php5.kiev.ua/manual/ru/function.fgets.html
Автор:
if you for some reason need to get lines from a string instead of a file pointer, try

<?php
function string_gets(string $sourceint $offset 0string $delimiter "\n"): ?string
{
   
$len strlen($source);
    if (
$len $offset) {
       
// out of bounds.. maybe i should throw an exception
       
return null;
    }
    if (
$len === $offset) {
       
// end of string..
       
return null;
    }
   
$delimiter_pos strpos($source$delimiter$offset);
    if (
$delimiter_pos === false) {
       
// last line.
       
return substr($source$offset);
    }
    return 
substr($source$offset, ($delimiter_pos $offset) + strlen($delimiter));
}

?>

(i had a ~16GB string in-memory i needed to process line-by-line, but i would get memory-allocation-crash (on a 32GB ram system) if i tried explode("\n",$str); , so came up with this.. interestingly, fgets() seems to be faster than doing it in-ram-in-php, though. php 7.3.7)
2020-03-21 17:34:31
http://php5.kiev.ua/manual/ru/function.fgets.html

    Поддержать сайт на родительском проекте КГБ