Created
July 1, 2016 09:08
-
-
Save MEGApixel23/b2e2ec196a4f4e3f8dba23e155fc8999 to your computer and use it in GitHub Desktop.
Direct image reading on PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// сбрасываем буфер вывода PHP, чтобы избежать переполнения памяти выделенной под скрипт | |
// если этого не сделать файл будет читаться в память полностью! | |
if (ob_get_level()) | |
ob_end_clean(); | |
header('Content-Type: image/jpeg'); | |
// читаем файл и отправляем его пользователю | |
readfile($link); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment