抓取百度贴吧指定相册图片到本地的代码
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-07-25 08:51:10
详见 http://qxblog.sinaapp.com/?p=95
-
@set_time_limit(10);
- //贴吧名称
- $tbname = "mugen";
- //相册ID
- $tid = "2124904411";
- //图册页url模版
- $galleryurltpl = "http://tieba.baidu.com/photo/bw/picture/guide?kw=%s&tid=%s";
- //本地的目录
- $savepath = "R:/images/";
- //帖子子文件夹
- $filedir = $savepath.$tid;
- //图片文件
- $filenametpl = $filedir."/%s.jpg";
- //图册页url
- $galleryurl = sprintf($galleryurltpl, $tbname, $tid);
-
- //返回的json数据
- $retjson = file_get_contents($galleryurl);
- $retarray = json_decode($retjson, true);
- //图片列表
- $piclist = $retarray['data']['pic_list'];
-
- //目录是否存在
- if(!is_dir($filedir))
- mkdir($filedir);
- foreach($piclist as $pic){
- $pic_id = $pic['img']['original']['id'];
- $url = "http://imgsrc.baidu.com/forum/pic/item/".$pic_id.".jpg";
- $filename = sprintf($filenametpl, $pic_id);
- //下载图片
- $imagebin = file_get_contents($url);
- //保存图片
- file_put_contents($filename,$imagebin);
- }
- ?>
复制代码
|
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11