Php Fgets Function

[Solved] Php Fgets Function | C - Code Explorer | yomemimo.com
Question : fgets in php

Answered by : kinjal-suryavanshi

 $fptr = fopen('myfile.txt','r'); if(!$fptr) { die("Could not open file"); } while($line = fgets($fptr)) { echo $line; //fgets read line by line, if we don't put code in while loop then it will print only one line of code } echo "End of the file reached!"; //it only reads one line at a time 

Source : | Last Update : Tue, 19 Oct 21

Answers related to php fgets function

Code Explorer Popular Question For C