Answers for "fgets in php"

PHP
-1

fgets in php

$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
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language