<?php
echo "THIS FUNCTION MUST MAKE A LINKS";
function autolink($text)
{
$search = array("'[\w\+]+://[A-z0-9\.\?\+\-/_=&%#:;]+[\w/=]+'si","'([^/])(www\.[A-z0-9\.\?\+\-/_=&%#:;]+[\w/=]+)'si","'[\w]+[\w\-\.]+@[\w\-\.]+\.[\w]+'si");
$replace = array('<a href="$0" target="_blank" rel="nofollow">$0</a>','$1<a href="http://$2" target="_blank" rel="nofollow">$2</a>','<a href="mailto:$0" rel="nofollow">$0</a>');
return preg_replace($search, $replace, $text);
}
$zlink="www.google.com";
echo "<br>".autolink($zlink);
?>
No replies to this topic
#1
Posted 08 February 2011 - 06:47 AM
|
|
|
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account


Back to top









