text2html.php 318 B

123456789101112
  1. <?php
  2. function text2html($text,$ifnoe) {
  3. if (is_null($text) || preg_match('#^\s*$#',$text)===1)
  4. return $ifnoe;
  5. $text=preg_replace(['#<#','#>#'],['&lt;','&gt;'],$text);
  6. $text=preg_replace('#(https?://.+?)(\s|$|\W\s|\W$)#m','<a href="$1" target="_blank">$1</a>$2',$text);
  7. $text=nl2br($text);
  8. return $text;
  9. }
  10. ?>