Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$file = fopen("твоя файл","r");
$i = 1;
while (!feof($file)) {
if ($i <= 5) { echo "<pre>".(fgets($file,4096))."</pre>"; $i++; }
else return;
}
трябва да върне колко реда има файла file.txtecho count(file("file.txt"));