Skip to content

Instantly share code, notes, and snippets.

@Twipped
Created November 21, 2012 20:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Twipped/4127536 to your computer and use it in GitHub Desktop.
Save Twipped/4127536 to your computer and use it in GitHub Desktop.
public function gravatar($email, $size = 70, $default = "monsterid") {
return "http://www.gravatar.com/avatar/" .
md5(strtolower($email)) .
"?s=" . (integer) $size .
"&d=" . urlencode($default) .
"&r=G";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment