Last active
October 23, 2018 04:16
-
-
Save qwersk/7955e42288d61a3c2faa94830168a5e0 to your computer and use it in GitHub Desktop.
Read image file #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 | |
$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(); |
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 | |
$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