I need to get a arquivo.txt
, print it on the screen and enter the total number of lines, but I would like to "search" the file in any system directory
<?php
$arquivo = fopen('arquivo.txt', 'r');
while (!feof ($arquivo)) {
$linha = fgets($arquivo);
echo $linha."<br>";
}
fclose ($arquivo);
$linhas = count( file('arquivo.txt' ) );
echo "<br />Quantidade de linhas : ".$linhas;
?>