flurin-d
4/8/2016 - 9:15 AM

creates anchors to websites, hashtag-searches and twitter profiles.

creates anchors to websites, hashtag-searches and twitter profiles.

function convertTweet($tweet) {
	// URL => External Link
	$tweet = preg_replace('/([\w]+\:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/', '<a href="$1" target="_blank">$1</a>', $tweet);
	// Hastags => Twitter Search
	$tweet = preg_replace('/#([A-Za-z0-9\/]*)/', '<a href="http://twitter.com/search?q=$1" target="_new">#$1</a>', $tweet);
	// @Tags => Twitter Profile
	$tweet = preg_replace('/@([A-Za-z0-9\/]*)/', '<a href="http://twitter.com/$1">@$1</a>', $tweet);
	return $tweet;
}