Advertisement
reenadak

get gravatar url

Feb 20th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. /*
  2.     - Get Gravatar URL
  3.     - Get the URL for a gravatar attached to someone's email address to be used
  4.       in the <img> tag.
  5.      
  6.     $email     - The email to fetch the gravatar of.
  7.     $size      - The size of the gravatar to be fetched (default 40 pixels)
  8.     */
  9.    
  10.     public function getGravatarURL($email, $size = 40) {
  11.         $email = md5(trim($email));
  12.         $grav_url = "http://www.gravatar.com/avatar/" . $email . "?s=" . $size;
  13.         return $grav_url;
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement