方法一:直接调用多说的头像缓存
将下面的代码复制到模板文件module.php中
1 2 3 4 5 6 7 8 |
<?php //blog-tool:获取Gravatar头像 function DuoshuoGravatar($email, $s = 40, $d = ’mm’, $g = ’g’) { $hash = md5($email); $avatar = "http://gravatar.duoshuo.com/avatar/$hash?s=$s&d=$d&r=$g"; return $avatar; } ?> |
将module.php中所有的getGravatar替换为DuoshuoGravatar。
方法二:将多说的头像缓存到本地
将下面的代码复制到模板文件module.php中
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 |
<?php //Custom:获取模板目录名称 function get_template_name(){ $template_name = str_replace(BLOG_URL,"",TEMPLATE_URL); $template_name = str_replace("content/templates/","",$template_name); $template_name = str_replace("/","",$template_name); return $template_name; } ?> <?php //blog-tool:获取Gravatar头像并缓存到本地 function MyGravatar($email, $s=40, $d=’monsterid’, $r=’g’) { $f = md5($email); $a = TEMPLATE_URL.’avatar/’.$f.’.jpg’; $e = EMLOG_ROOT.’/content/templates/’.get_template_name().’/avatar/’.$f.’.jpg’; $t = 1296000; //15天,单位:秒 if (empty($d)) $d = BLOG_URL.’avatar/default.jpg’; if (!is_file($e) || (time() - filemtime($e)) > $t ) { //当头像不存在或者超过15天才更新 $g = sprintf("http://gravatar.duoshuo.com",(hexdec($f{0})%2)).’/avatar/’.$f.’?s=48&d=’.$d.’&r=’.$r; copy($g,$e); $a=$g; //新头像copy时, 取gravatar显示 } if (filesize($e) < 500) copy($d,$e); return $a; } ?> |
在模板文件夹新建名为avatar的文件夹,将module.php中的getGravatar替换为MyGravatar。
修改完成后刷新两次网页,查看头像路径为本地路径即设置成功。
如gravatar网站恢复正常,不需使用上述功能时,删除上述代码,将MyGravatar或者DuoshuoGravatar替换为原来的getGravatar即可。
更简单的方法:
把显示头像的www.gravatar.com改成cn.gravatar.com就可以了
文章评论
不错的方法,谢谢分享!
@迷糊小侠:多个方法,多条路啊
好像方法还挺多的
可以尝试一下