首頁 >php教程 >php手册 >详细解读PHP获取远程图片技巧

详细解读PHP获取远程图片技巧

WBOY
WBOY原創
2016-06-13 11:11:31987瀏覽

PHP获取远程图片代码示例:

  1. function gethttpimage($url){  
  2. set_time_limit(0);  
  3. if(!empty($url)){  
  4. $imgUrl=date('Y-m',time()).'/'.
    uniqid().strrchr($url,".");  
  5. $imgPath=APP_PATH.'/Public
    /uploads/';   
  6. $filename=$imgPath.$imgUrl;   
  7. if(!is_dir($imgPath)) @mkdir
    ($imgPath,0777);  
  8. $get_file=@file_get_
    contents($url);   
  9. if($get_file){  
  10. $fp=@fopen($filename,"w");  
  11. @fwrite($fp,$get_file);  
  12. @fclose($fp);  
  13. }   
  14. return $imgUrl;  
  15. }else{  
  16. return false;  
  17. }   
  18. }  

以上这段代码就是PHP获取远程图片的相关方法介绍。


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn