Describe in words what the following sequence of PHP does:
$text = file_get_contents("schedule.txt");
$lines = explode("\n", $text);
rsort($lines);
array_reverse($lines);
$text = implode("\n", $lines);
file_put_contents("schedule.txt", $text);
Thanks, but according to your answer it seems...