Skip to content

Instantly share code, notes, and snippets.

@vienhoang
Created August 9, 2014 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vienhoang/242bb9e3cf0ea33e595e to your computer and use it in GitHub Desktop.
Save vienhoang/242bb9e3cf0ea33e595e to your computer and use it in GitHub Desktop.
PHP: Add url to text
function add_url_to_text( $text ) {
// Look for anything that is not a space, i = case insensitive, m = multiple line
$text = preg_replace('/(http[^s])+/im', '<a href="$1">$1</a>', $text );
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment