Code must skip existing links, <img>'s src values (or something like that)
public function convertUrlsToLinks($text){
return preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.-]*(\?\S+)?)?)?)@', '<a href="$1" target="_blank">$1</a>', $text);
}
Can't figure out, what I need to modify in this function?
<a>tag as plaintext. – raygo Aug 14 '12 at 18:58