proxy.php 623 B

1234567891011121314151617181920212223
  1. <?php
  2. require_once("../config.php");
  3. $url = htmlspecialchars($_GET["url"]);
  4. // ファイル類
  5. $ext = explode(".", $url);
  6. $ext = $ext[array_key_last($ext)];
  7. if ($ext == "jpg") $ext = "jpeg";
  8. // ファイル名
  9. $fname = explode("/", $url);
  10. $fname = $fname[array_key_last($fname)];
  11. header("Content-type: image/".$ext);
  12. header("Content-Disposition: filename=\"".$fname."\"");
  13. $ch = curl_init();
  14. curl_setopt($ch, CURLOPT_URL, "https://".$url);
  15. curl_setopt($ch, CURLOPT_REFERER, "https://www.pixiv.net/");
  16. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  17. curl_exec($ch);
  18. curl_close($ch);
  19. ?>