I\'m extracting twitter user\'s profile image through JSON. For this my code is:
$x->profile_image_url
that returns the url of the profile i
Php str_replace.
str_replace('_normal', '', $var)
What this does is to replace '_normal' with '' (nothing) in the variable $var. Or take a look at preg_replace if you need the power of regular expressions.