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

WBOY
Release: 2016-07-15 13:31:57
Original
1088 people have browsed it

以下代码就是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>
    imgsrc="'.$img.'">pre>';
  24. else:echo "false";
  25. endif;
  26. ?>

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


www.bkjia.com true http://www.bkjia.com/PHPjc/446171.html TechArticle 以下代码就是PHP抓取图片的代码示例: ?php //变量说明: //$url是远程图片的完整URL地址,不能为空。 //$filename是可选变量:如果为空, 本地文...
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!