Posted By

browncardigan on 02/08/10


Tagged


Versions (?)

Who likes this?

1 person has marked this snippet as a favorite

redstorm


convertUrlsToLinks


Published in: PHP 


URL: http://bettesmidler.com/code/2009-07-08.htm

  1. function convertUrlsToLinks($content='') {
  2. return ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\" rel=\"nofollow\">\\0</a>", $content);
  3. }

Report this snippet 

You need to login to post a comment.