Файл: tankon.mobi/sys/fnc/bbcode.php
Строк: 18
<?
function bbcodehightlight($arr)
{
$arr[0]=html_entity_decode($arr[0], ENT_QUOTES, 'UTF-8');
return '<div class="cit" style="overflow:scroll;clip:auto;max-width:480px;">'.preg_replace('#<code>(.*?)</code>#si', '\1' ,highlight_string($arr[0],1)).'</div>'."n";
}
function BBcode($msg)
{
global $set;
$bbcode=array();
$bbcode['/[imgs](.+)[/imgs]/isU'] ='<img style="border-radius:5px;max-width:200px;margin-top:3px" src="$1" alt="" />';
$bbcode['/[cr](.+)[/cr]/isU']='<span style="color:#ff0000;">$1</span>';
$bbcode['/[cy](.+)[/cy]/isU']='<span style="color:#ffff22;">$1</span>';
$bbcode['/[cg](.+)[/cg]/isU']='<span style="color:#00CD00;">$1</span>';
if (count($bbcode))$msg= preg_replace(array_keys($bbcode), array_values($bbcode), $msg);
if ($set['bb_code']){
$msg=preg_replace_callback('#<?(.*?)?>#sui', 'bbcodehightlight', $msg);
$msg=preg_replace('#[code](.*?)[/code]#si', '1', $msg);
}
return $msg;
}
?>