1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
商业版修改方法 1.打开文件 source\module\prelink.php 查找代码: function get_webthumb($web_pic) { global $options; if (!empty($web_pic)) { $strurl = $options['site_root'].$options['upload_dir'].'/'.$web_pic; } else { $strurl = $options['site_root'].'public/images/nopic.gif'; } return $strurl; } 修改为: function get_webthumb($web_url) { return 'http://www.myip.cn/webthumb.php?q='.$web_url; } 2.在将module\linkinfo.php文件内的 get_webthumb($link['web_pic']); 替换成 get_webthumb($link['web_url']); 3.在将module\siteinfo.php文件内的 get_webthumb($web['web_pic']); 替换成 get_webthumb($web['web_url']); 4.在将source\module\website.php文件内的(此处有两处修改) $row['web_pic'] = get_webthumb($row['web_pic']); 替换成 $row['web_pic'] = get_webthumb($row['web_url']); 以上方法参考黄粱一梦的帖子 利用myip的接口显示缩略图 图片是调用myip的 不会占用自己服务器空间 资源 速度也有保证 |
转载请注明:天狐博客 » 35dir网站缩略图自动获取方法