I found out how to linkify a URL in php here, but does anyone know how to do this same concept with an email address? Thanks!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Using preg_replace would be ideal. gar_onn's answer wouldnt work, because if i wrote a sentance like: "I use asterisk@home. It's pretty neat", the whole string would be linkified. Something like this would be more ideal :
|
|||||||
|
|
ereg_replace function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged. , you should use preg_replace this will work: for the e-mails links
this will for url's without erg_replace:
|
|||
|