With PHP how can I mimic the auto-link behavior of Stack Overflow (which BTW is awesomely cool)?
For instance, the following URL:
http://www.stackoverflow.com/questions/1925455/how-to-mimic-stackoverflow-auto-link-behavior
Is converted into this:
<a title="how to mimic stackoverflow auto link behavior" rel="nofollow" href="http://www.stackoverflow.com/questions/1925455/how-to-mimic-stackoverflow-auto-link-behavior">stackoverflow.com/questions/1925455/…</a>
I don't really care for the title attribute in this case.
And this:
Is converted into this:
<a rel="nofollow" href="http://pt.php.net/manual/en/function.base-convert.php#52450">pt.php.net/manual/en/…</a>
How can I make a similar function in PHP?
PS: Check my comments on this question for some more examples and behaviors.