I
I
Ilya2016-07-22 04:53:51
PHP
Ilya, 2016-07-22 04:53:51

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

1 answer(s)
S
SagePtr, 2016-07-22
@dosattack13

$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 question

Ask a Question

731 491 924 answers to any question