PHP Read FilePHP provides various functions to read data from file. There are different functions that allow you to read all file data, read data line by line and read data character by character. The available PHP file read functions are given below.
PHP Read File - fread()The PHP fread() function is used to read data of the file. It requires two arguments: file resource and file size. Syntax$handle represents file pointer that is created by fopen() function. $length represents length of byte to be read. ExampleOutput this is first line this is another line this is third line PHP Read File - fgets()The PHP fgets() function is used to read single line from the file. SyntaxExampleOutput this is first line PHP Read File - fgetc()The PHP fgetc() function is used to read single character from the file. To get all data using fgetc() function, use !feof() function inside the while loop. SyntaxExampleOutput this is first line this is another line this is third line Next TopicPHP Write File |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India