Moderator |
|
Van PHP.net, functie file():
Citaat: Identical to file_get_contents(), except that file() returns the file in an array. Each element of the array corresponds to a line in the file, with the newline still attached. Upon failure, file() returns FALSE.
$bestand = "..."; // pad + bestandsnaam
$inhoud = file($bestand);
echo $inhoud[42]; // regel 43 (nummering in $inhoud vanaf 0)
$bestand = "..."; // pad + bestandsnaam $inhoud = file($bestand); echo $inhoud[42]; // regel 43 (nummering in $inhoud vanaf 0)
Als je fread gebruikt, zou je ook kunnen exploden op een regelovergang, en zo je eigen array bouwen. |