zono

За убунтумена ..

Nov 20th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Ти ме накара да се разсмея ..
  4.  **/
  5. function convertUrlToLinks($input) {
  6.    return preg_replace_callback("@(?:https?|ftp)://[^\s/$.?#].[^\s]*@iS", function($matches) {
  7.            return '<a href="' .  $matches[0] . '" target="_blank">' . $matches[0]  . '</a>';
  8.    }, $input);
  9. }
  10.  
  11. var_dump(convertUrlToLinks("http://dir.bg http://dir.bg "));
Advertisement
Add Comment
Please, Sign In to add comment