Skip to content

Instantly share code, notes, and snippets.

View CortexPE's full-sized avatar
😈
trying to have fun, as always.

marshall CortexPE

😈
trying to have fun, as always.
View GitHub Profile
@CortexPE
CortexPE / imageProxy.php
Last active May 16, 2018 00:27 — forked from nicoptere/imageProxy.php
basic PHP image proxy (that works ... )
<?php
if(isset($_GET['url'])){
$url = $_GET['url'];
$imginfo = getimagesize($url);
header("Content-type: " . $imginfo['mime']);
readfile($url);
}else{
exit();
}