Answer the question
In order to leave comments, you need to log in
How to read and display a file FROM and TO?
There is a file with text, you need to deduce a certain piece from it from and to.
The text file contains the TV program for the week
:
Monday
....
....
Tuesday
....
....
Wednesday
...
Tuesday"?
$res = file(__DIR__ . '/db.txt'); //открытие файла
$file=$res; // открытие переменной
$i=0; // переменная счетчика
while ($i<count($file)) {
echo $file[$i]. "<br>";
$i++;
}
Answer the question
In order to leave comments, you need to log in
$res = file(__DIR__ . '/db.txt'); //открытие файла
$file=$res; // открытие переменной
$i=0; // переменная счетчика
while ($i<count($file)) {
if (trim($file[$i]) == 'понедельник')
break;
$i++;
}
$i++; // если нужно включительно понедельник - убрать
while ($i<count($file)) {
if (trim($file[$i]) == 'вторник')
break;
echo $file[$i]. "<br>"; // если нужно включительно вторник - поместить над строкой if
$i++;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question