URLがあると自動でリンク付け
参考
・http://www.comachi.com/2005/12/urlphp.html
正規表現で置換
$text =
ereg_replace(“[^’\”](https?|ftp)(://[[:alnum:]\+\$\;\?\.%,!#~*/:@&=_-]+)”,
“<a href=\”\\1\\2\” target=\”_blank\”>\\1\\2</a>” , $text);
参考
・http://www.comachi.com/2005/12/urlphp.html
正規表現で置換
$text =
ereg_replace(“[^’\”](https?|ftp)(://[[:alnum:]\+\$\;\?\.%,!#~*/:@&=_-]+)”,
“<a href=\”\\1\\2\” target=\”_blank\”>\\1\\2</a>” , $text);