PHP fgets() Function

The fgets() function returns a line from an open file.The fgets() function stops returning on a new line, at the specified length, or at EOF, whichever comes first.This function returns FALSE on failure.

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

Gets a line from file pointer.

Example -

ParameterDescription
fileRequired. Specifies the file to read from
lengthOptional. Specifies the number of bytes to read. Default is 1024 bytes.