Skip to content

Instantly share code, notes, and snippets.

@DeviaVir
Created April 21, 2012 12:21
Show Gist options
  • Save DeviaVir/2436841 to your computer and use it in GitHub Desktop.
Save DeviaVir/2436841 to your computer and use it in GitHub Desktop.
Grab the mostly higher quality image from Twitter users
<?PHP
# Requires the (by default enabled) simplexml PHP library
$username = 'deviavir';
$xml = simplexml_load_file( "http://twitter.com/users/".$username.".xml" );
$img = str_replace( '_normal', '', $xml->profile_image_url );
?>
<img src="<?=$img?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment