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
$s = 'Posted On jan 3rd By Some Dude'; echo strstr($s, 'By', true);
This is to remove particular string from a string.
The result will be like this
'Posted On jan 3rd'