/
TorX
/
rasp
Обзор
Документация
Войти
/
TorX
/
rasp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
export.php
16 строк
432 B
tormovies
Rewrite the app as plain PHP so it runs on shared hosting without Node.
06 авг 2026, 00:17
06 авг 2026, 00:17
b4b9ea6
Код
Авторство
О чём код?
<?php declare(strict_types=1); require_once __DIR__ . '/includes/queries.php'; $pitch = $_GET['pitch'] ?? 'all'; if (!in_array($pitch, ['all', 'with', 'without'], true)) { $pitch = 'all'; } $text = export_text(list_upcoming($pitch)); $filename = 'raspisanie-upcoming-' . $pitch . '.txt'; header('Content-Type: text/plain; charset=utf-8'); header('Content-Disposition: attachment; filename="' . $filename . '"'); echo $text;