The basic function of this is to find any URLs in the block of text and turn them into hyperlinks. It will only find URLs if they are properly formatted, meaning they have a http, https, ftp or ftps.
<?php
function autolink($str, $attributes=array()) {
$attrs = '';
foreach ($attributes as $attribute => $value) {
$attrs .= " {$attribute}=\"{$value}\"";
}
$str = ' ' . $str;
$str = preg_replace(
'`([^"=\'>])((http|https|ftp)://[^\s<]+[^\s<\.)])`i',
'$1<a href="$2"'.$attrs.'>$2</a>',
$str
);
$str = substr($str, 1);
return $str;
}
?>
Syntaxe
string autolink ( string $str [, array $attributes = array() ] )
Arguments
- str - La chaîne d'entrée.
- attributes - Optionnel. Si spécifié, ce paramètre doit être un tableau associatif de format $arr['attribute'] = $value.
Valeurs de retour
Retourne une copie de la chaîne str dont les urls ont été encapsulées dans des balises <a>.
Exemples
Exemple #1 Exemple avec autolink()
$str = 'A link : http://example.com/?param=value#anchor.' ; |
Exemple #2 Exemple avec autolink()
$str = 'http://example.com/' ; |
$str = autolink( $str , array ( "target" => "_blank" , "rel" => "nofollow" )); |
No comments:
Post a Comment