Snippets tagged "tools" Snippets tagged "tools"

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);
  }
by Leroux de Lens Amaury on 2009-11-18, tagged links  regexp  tools