Skip to content

Instantly share code, notes, and snippets.

@githubschik
Forked from MkShaman/download file bitrix
Created July 27, 2022 09:27
Show Gist options
  • Select an option

  • Save githubschik/418de57add273aba3c0ed7ee4ba7e9e6 to your computer and use it in GitHub Desktop.

Select an option

Save githubschik/418de57add273aba3c0ed7ee4ba7e9e6 to your computer and use it in GitHub Desktop.
download file bitrix
<a href="file.pdf">ссылка для скачивания</a>
только браузеры зачастую открывают pdf файлы сами и не предлагают скачивать...
если именно скачать то ссылку новую страничку в новом окне с кодом PHP
$file = "files/archive.rar";
header ("Content-Type: application/octet-stream");
header ("Accept-Ranges: bytes");
header ("Content-Length: ".filesize($file));
header ("Content-Disposition: attachment; filename=".$file);
readfile($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment