Skip to content

Instantly share code, notes, and snippets.

@qwersk
Last active October 23, 2018 04:16
Show Gist options
  • Save qwersk/7955e42288d61a3c2faa94830168a5e0 to your computer and use it in GitHub Desktop.
Save qwersk/7955e42288d61a3c2faa94830168a5e0 to your computer and use it in GitHub Desktop.
Read image file #PHP
<?php
$remoteImage = "http://domain.test/15234430911059048477.jpg";
$imginfo = getimagesize($remoteImage);
header('Content-Description: File Transfer');
header("Content-type: {$imginfo['mime']}");
header('Content-Disposition: attachment; filename="'.basename($remoteImage).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($remoteImage));
readfile($remoteImage);
exit();
<?php
$remoteImage = "http://DOMAIN/image.jpg";
$imginfo = getimagesize($remoteImage);
header("Content-type: {$imginfo['mime']}");
readfile($remoteImage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment