abbr.Earth Orbital Flight Earth Orbital Flight


php feof() function syntax

Function:Detect whether the end of file (eof) has been reached.

Syntax:feof(file)

Parameters:

Parameter Description
file Required. Specifies the open file to be checked.Description:The file parameter is a file pointer. This file pointer must be valid and must point to a file that was successfully opened by fopen() or fsockopen() (but has not been closed by fclose()).

php feof() function example