熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

破解防盜鏈圖片的php函數

2022-06-13   來源: PHP編程 

  現在很多網站和論壇的圖片都在使用防盜鏈技術既然有防盜鏈那麼肯定就有破解防盜鏈的方法啦下面小編就來為你提供一個破解防盜鏈圖片的php函數不過只支持jpg和gif 哦如果想支持多種圖處格式大家可以做下修改

  $url=$_GET[url];

  $ext=pathinfo($urlPATHINFO_EXTENSION);

  if($ext!=jpg && $ext!=gif){ // 只支持jpg和gif

  readfile(/upload/gif);

  exit;

  }

  $file=md($url)$ext;

  if(file_exists($file)){

  readfile($file);

  exit;

  }else{

  $data=file_get_contents($url);

  if(!$data){ // 讀取失敗

  readfile(/upload/gif);

  exit;

  }

  $handle=fopen($filewb);

  fwrite($handle$data);

  fclose($handle);

  echo $data;

  }

  ?>


From:http://tw.wingwit.com/Article/program/PHP/201311/21020.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.