Skip to content

Instantly share code, notes, and snippets.

@banksy89
Created August 12, 2012 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save banksy89/3334259 to your computer and use it in GitHub Desktop.
Save banksy89/3334259 to your computer and use it in GitHub Desktop.
Returns the path of a given Twitter usernames avatar
function getTwitterAvatar ( $username )
{
$twitter_xml = simplexml_load_file ( "http://twitter.com/users/".$username.".xml" );
return $twitter_xml->profile_image_url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment