Skip to content

Instantly share code, notes, and snippets.

@MEGApixel23
Created July 1, 2016 09:08
Show Gist options
  • Save MEGApixel23/b2e2ec196a4f4e3f8dba23e155fc8999 to your computer and use it in GitHub Desktop.
Save MEGApixel23/b2e2ec196a4f4e3f8dba23e155fc8999 to your computer and use it in GitHub Desktop.
Direct image reading on PHP
<?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