Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$text = str_replace("[u]","<u>",$text);
$text = str_replace("[U]","<u>",$text);
$text = str_replace("[i]","<i>",$text);
$text = str_replace("[I]","<i>",$text);
$text = str_replace("[b]","<B>",$text);
$text = str_replace("[B]","<B>",$text);
$text = htmlspecialchars($text);
$str = preg_replace("!(\[color=)(.*?)(\])(.*?)(\[\/color])!si", '<font color="\\2">\\4</font>', $str);
$txt = preg_replace("#\[b\](.*?)\[/b\]#is", "<b>$1</b>", $txt);
$txt = preg_replace("#\[img=(.+?) x\:(.+?) y\:(.+?)\](.*?)\[/img\]#is", "<img src=\"$1\" width=\"$2\" height=\"$3\" alt=\"$4\" border=\"0\" />", $txt);
$text = htmlspecialchars($text);