Regex to make Twitter links clickable


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function twitterify($ret) {
  2. $ret = preg_replace("#(^|[\n ])([\w]+?://[\w]+[^ \"\n\r\t< ]*)#", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
  3. $ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r< ]*)#", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
  4. $ret = preg_replace("/@(\w+)/", "<a href=\"http://www.twitter.com/\\1\" target=\"_blank\">@\\1</a>", $ret);
  5. $ret = preg_replace("/#(\w+)/", "<a href=\"http://search.twitter.com/search?q=\\1\" target=\"_blank\">#\\1</a>", $ret);
  6. return $ret;
  7. }

URL: http://www.snipe.net/2009/09/php-twitter-clickable-links/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.