2024-08-22 11:20:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function text2html($text,$ifnoe) {
|
|
|
|
if (is_null($text) || preg_match('#^\s*$#',$text)===1)
|
|
|
|
return $ifnoe;
|
2024-08-22 13:47:22 +02:00
|
|
|
$text=preg_replace(['#<#','#>#'],['<','>'],$text);
|
|
|
|
$text=preg_replace('#(https?://.+?)(\s|$|\W\s|\W$)#m','<a href="$1" target="_blank">$1</a>$2',$text);
|
2024-08-22 11:20:54 +02:00
|
|
|
$text=nl2br($text);
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|