PHP - want to check if user input has website address in it
I want that whenver a user inserts "www." in a comment textarea, the address from "www." until the first space will be a replaced with a link to that address:
"I love www.google.com"
turns into
"I love <a href="www.google.com">www.google.com</a>"
Can you please tell me how to do this? (newbie)
(sorry for posting the earlier question I still don't quite get it).
开发者_JS百科Should I use preg_match_all()
?
Try:
$text = preg_replace('/(www\.[a-zA-Z0-9-]+\.[a-zA-Z\.]{2,})/', '<a href="http://\\1">\\1</a>', $text);
preg_replace('/www\.(*)\.com/',"<a href='www.$1.com'>www.$1.com</a>",$strUrl);
BAH beat me to the punch.
精彩评论