php read file line by line into array code example
Example 1: php read file line by line
$handle = fopen("inputfile.txt", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
// process the line read.
}
fclose($handle);
} else {
// error opening the file.
}
Example 2: read file and convert each line in array php
$lines = file($filename, FILE_IGNORE_NEW_LINES);