2011-07-18 67 views

回答

3

這是從this stackoverflow question

$text = preg_replace(" 
    #((http|https|ftp)://(\S*?\.\S*?))(\s|\;|\)|\]|\[|\{|\}|,|\"|'|:|\<|$|\.\s)#ie", 
    "'<a href=\"$1\" target=\"_blank\">$3</a>$4'", 
    $text 
); 
相關問題