Файловый менеджер - Редактировать - /home/unfoldco/public_html/download_publication.php
Назад
<?php /** * Created by PhpStorm. * User: katisho * Date: 2/25/24 * Time: 6:15 AM */ header("Content-Type: application/octet-stream"); $file = $_GET["file"] . ".pdf"; header("Content-Disposition: attachment; filename=" . urlencode($file)); header("Content-Type: application/download"); header("Content-Description: File Transfer"); header("Content-Length: " . filesize($file)); flush(); // Not a must. $fp = fopen($file, "r"); while (!feof($fp)) { echo fread($fp, 65536); flush(); // This is essential for large downloads } fclose($fp);
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка