Home >php教程 >php手册 >PHP抓取图片的具体实现方法

PHP抓取图片的具体实现方法

WBOY
WBOYOriginal
2016-06-13 11:08:58825browse

以下代码就是PHP抓取图片的代码示例:

  1.  ?php  
  2. // 变量说明:   
  3. // $url 是远程图片的完整URL地址,不能为空。  
  4. // $filename 是可选变量: 如果为空,
    本地文件名将基于时间和日期自动生成.   
  5. function GrabImage($url,$filename="") {   
  6. if($url==""):return false;endif;   
  7. if($filename=="") {   
  8. $ext=strrchr($url,".");   
  9. if($ext!=".gif" && $ext!=".jpg"):
    return false;endif;   
  10. $filename=date("dMYHis").$ext;   
  11. }   
  12. ob_start();   
  13. readfile($url);   
  14. $img = ob_get_contents();   
  15. ob_end_clean();   
  16. $size = strlen($img);   
  17. $fp2=@fopen($filename, "a");   
  18. fwrite($fp2,$img);   
  19. fclose($fp2);   
  20. return $filename;   
  21. }   
  22. $img=GrabImage("图片路径","");   
  23. if($img):echo 'pre>
    img src="'.$img.'">pre>';  
  24. else:echo "false";  
  25. endif;   
  26. ?> 

希望大家能通过本文介绍的PHP抓取图片的方法,熟练运用这一方法。


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn