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
Multi replace
$a = array('one','two','three'); $var = "one_1 two_2 three_3"; str_replace($a, '',$var);