Snippets tagged "tools"
classés par popularité
get by date
Replier tout
replace url by links in a text
static function urlMe($text){ $pattern = "@(http://|https://){1}((www\.?)[a-zA-Z0-9\-\.]+\.[a-z]{2,6})/?([^\s]*)@"; preg_match_all($pattern,' '.$text.' ',$matches); foreach($matches[2] as $offset => $link){ $text = str_replace($matches[0][$offset],'<a href="'.$matches[0][$offset].'" title="'.$matches[0][$offset].'">'.$link.'</a>',$text); } return($text); }
