/ Published in: PHP
URL: http://www.adampatterson.ca/blog/2011/02/regular-expression-for-url-using-ereg_replace/
Expand |
Embed | Plain Text
// $subject contains a body of text with non html URLs $text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", "<a href=\"\\0\">\\0</a>", $subject);
You need to login to post a comment.
