0

Say I have a forum thread and I want to make all mentioned URLs as clickable links. How can I accomplish this in Yii?

Thanks.

oaziz
  • 1,362
  • 1
  • 17
  • 32

2 Answers2

3

This is copied straight from this stackoverflow question

$text = preg_replace("
  #((http|https|ftp)://(\S*?\.\S*?))(\s|\;|\)|\]|\[|\{|\}|,|\"|'|:|\<|$|\.\s)#ie",
  "'<a href=\"$1\" target=\"_blank\">$3</a>$4'",
  $text
);
Community
  • 1
  • 1
Jeff Lambert
  • 24,395
  • 4
  • 69
  • 96
2

Did you look into CHtmlPurifier? see: Linkify and http://htmlpurifier.org/demo.php

ldg
  • 9,112
  • 2
  • 29
  • 44