fork download
  1. <?php
  2. function twitterify($ret) {
  3. //
  4. // Replace all text that precedes a URL with an HTML anchor
  5. // that hyperlinks the URL and shows the preceding text as
  6. // the anchor text.
  7. //
  8. // e.g., "hello world www.test.com" becomes
  9. // <a href="www.test.com" target="_blank">hello world</a>
  10. //
  11. $ret = preg_replace("#(.*?)(http://)?(www\.[^ \"\t\n\r<]+)#", "<a href=\"http://\\3\" target=\"_blank\">\\1</a>", $ret);
  12.  
  13. // if anchor text is empty, insert anchor's href
  14. $ret = preg_replace("#(<a href=\"(\w+://)?([^\"]+)\"[^>]+>)(</a>)#", "\\1\\3\\4", $ret);
  15.  
  16. $ret = preg_replace("/@(\w+)/", "<a href=\"http://w...content-available-to-author-only...r.com/\\1\" target=\"_blank\">@\\1</a>", $ret);
  17. $ret = preg_replace("/#(\w+)/", "<a href=\"http://s...content-available-to-author-only...r.com/search?q=\\1\" target=\"_blank\">#\\1</a>", $ret);
  18. return $ret;
  19. }
  20.  
  21. function test($str) {
  22. print "INPUT: \"" . $str . "\"\nOUTPUT: " . twitterify($str) . "\n\n";
  23. }
  24. // tests
  25. test("www.foo.com");
  26. test("www.foo.com fox");
  27. test("www.test.com fox jumped over www.foo.com");
  28. test("fox jumped over www.test.com the fence www.foo.com");
  29. ?>
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
INPUT:  "www.foo.com"
OUTPUT: <a href="http://w...content-available-to-author-only...o.com" target="_blank">www.foo.com</a>

INPUT:  "www.foo.com  fox"
OUTPUT: <a href="http://w...content-available-to-author-only...o.com" target="_blank">www.foo.com</a>  fox

INPUT:  "www.test.com  fox jumped over  www.foo.com"
OUTPUT: <a href="http://w...content-available-to-author-only...t.com" target="_blank">www.test.com</a><a href="http://w...content-available-to-author-only...o.com" target="_blank">  fox jumped over  </a>

INPUT:  "fox jumped over  www.test.com   the fence   www.foo.com"
OUTPUT: <a href="http://w...content-available-to-author-only...t.com" target="_blank">fox jumped over  </a><a href="http://w...content-available-to-author-only...o.com" target="_blank">   the fence   </a>