I have the following string:
"Look on http://www.google.com".
I need to convert it to:
"Look on http://www.google.com"
The original string can have more than 1 URL string.
How do I do this in php?
Thanks
|
I have the following string:
I need to convert it to:
The original string can have more than 1 URL string. How do I do this in php? Thanks
| |||||
feedback
|
|
How about this:
(I found that here, btw). Ben | |||||||||||
feedback
|
|
| |||||||||
feedback
|
|
Have a look at regular expressions. You would then do something like:
| |||
|
feedback
|
|
I found an example which allows for links that include ftp, https and others which seems to work fine for multiple URLs how-to-detect-urls-in-text-and-convert-to-html-links-php-using-regular-expressions
Proabably a good idea to add nofollow to the link too is it's a user submitted value. | |||
|
feedback
|
|
Try this...
| |||
|
feedback
|
|
You will need to use regular expressions... Something like this will help.
| |||
|
feedback
|
|
Correctly linkifying a URL is non-trivial. (See: http://www.codinghorror.com/blog/2008/10/the-problem-with-urls.html for more on why this is so.) I spent quite a bit of time on this and have come up with a pretty good solution to the problem (for both PHP and/or Javascript). See: http://jmrware.com/articles/2010/linkifyurl/linkify.html | |||
|
feedback
|
|
Checkout my linkify function, which uses preg_replace_callback (PHP 5.3 only). It supports http, email and twitter: http://www.jasny.net/articles/linkify-turning-urls-into-clickable-links-in-php/
| |||||||
feedback
|