“PHP Leia grande linha de arquivo por linha” Respostas de código

PHP Leia grande linha de arquivo por linha

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

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

PHP Leia grande linha de arquivo por linha

if ($file = fopen("file.txt", "r")) {
    while(!feof($file)) {
        $line = fgets($file);
        # do same stuff with the $line
    }
    fclose($file);
}
steamboatid

Respostas semelhantes a “PHP Leia grande linha de arquivo por linha”

Perguntas semelhantes a “PHP Leia grande linha de arquivo por linha”

Procure respostas de código populares por idioma

Procurar outros idiomas de código