Создайте файл с именем MY_text_helper.php
в application/helpers
и добавьте в него следующую функцию:
function linkify($text){
return preg_replace('/(?<!http:\/\/)(www.[-a-zA-Z0-9@:%_\+.~#?&\/=]+)/i', '<a href="http://\1">\1</a>', $text);
}
Теперь в вашем контроллере:
//$content = 'get your content from somewhere'
$this->load->helper('text');
$content = linkify($content);