当前位置:Gxlcms > PHP教程 > PHP远程图片获取到本地

PHP远程图片获取到本地

时间:2021-07-01 10:21:17 帮助过:45人阅读

  1. /*
  2. * 远程图片获取到本地
  3. */
  4. function GrabImage($url){
  5. if($url != ""){ //如果图片地址为空
  6. $ext = strrchr($url,'.'); //判断图片的格式
  7. if($ext != '.jpg' && $ext != '.gif' && $ext != '$png'){
  8. return false;exit;
  9. }
  10. $filename_r = time().rand(10,9000).$ext; //给图片命名
  11. $filename = 'getimg/'.$filename_r;
  12. ob_start(); //打开缓冲区
  13. readfile($url);
  14. $imginfo = ob_get_contents(); //获得缓冲区的内容
  15. ob_end_clean(); //清除并关闭缓冲区
  16. $fp = fopen($filename,'a');
  17. fwrite($fp,$imginfo);
  18. fclose($fp);
  19. }else{
  20. return false;
  21. }
  22. }
  23. $start_time = microtime(true);
  24. GrabImage("http://img4.shougongke.com/Public/advance/53846840dafb4.jpg");
  25. $end_time = microtime(true);
  26. $time = round($end_time-$start_time,3);
  27. echo '程序总共用时'.$time.'秒';
  28. ?>

PHP

人气教程排行