Linkify: turning URLs into clickable links in PHP
by Arnold Daniels on 03/26/2012Turning links like www.example.com and http://twitter.com into clickable links. Sounds like an easy task, right? We’ll there are a few problems that might arise, especially if the text is already HTML formatted.
This function first takes out all potential dangers, by extracting links and tags and replacing them with a placeholder. It than extracts all URLs and replaces them with a placeholder, storing the full HTML link. At the end it replaces all placeholders with the links and tags.
This is also a nice example for how to use PHP closures.





There are 6 comments in this article: