头像url
根据email来获取你的头像地址,qq邮箱直接使用QQ头像
function getAvatar($email)
{
$email = strtolower($email);
$qq = str_replace('@qq.com','',$email);
$imgUrl = 'https://cravatar.cn/avatar/none';
if(stristr($email,'@qq.com') && is_numeric($qq)
&& strlen($qq)<11 && strlen($qq)>4 ) {
$imgUrl = "https://q1.qlogo.cn/g?b=qq&nk=". $qq."&s=100";
return $imgUrl;
}
else {
$imgUrl = 'https://cravatar.cn/avatar/'.md5($email);
}
return $imgUrl;
}
评论