Skip to content

Instantly share code, notes, and snippets.

@simonbowen
Created April 27, 2011 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonbowen/944834 to your computer and use it in GitHub Desktop.
Save simonbowen/944834 to your computer and use it in GitHub Desktop.
Auto Link Twitter Replies Kohana 3.x
<?php defined('SYSPATH') or die('No direct script access.');
class Text extends Kohana_Text {
public static function auto_twitter($text)
{
return preg_replace('#@([\\d\\w]+)#', '<a href="http://twitter.com/$1">$0</a>', $text);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment