“PHP Leer Archivo Línea por línea” Código de respuesta

PHP Leer Archivo Línea por línea

$handle = fopen("inputfile.txt", "r");
if ($handle) {
    while (($line = fgets($handle)) !== false) {
        // process the line read.
    }

    fclose($handle);
} else {
    // error opening the file.
} 
Friendly Hawk

Leer Line by Line PHP

<?php
	
	$file = new SplFileObject("file.txt");

	while(!$file->eof())
	  {
		echo $file->fgets()."<br/>";
	  }

	$file = null;

?>
Powerful Pony

Respuestas similares a “PHP Leer Archivo Línea por línea”

Preguntas similares a “PHP Leer Archivo Línea por línea”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código