Файл: core/cuctema/function/bbcode.php
Строк: 23
<?
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();
if (isset($set['bb_i']))$bbcode['/[i](.+)[/i]/isU'] ='<em>$1</em>';
if (isset($set['bb_b']))$bbcode['/[b](.+)[/b]/isU'] ='<strong>$1</strong>';
if (isset($set['bb_u']))$bbcode['/[u](.+)[/u]/isU'] ='<span style="text-decoration:underline;">$1</span>';
if (isset($set['bb_u']))$bbcode['/[u=([0-9]+)](.+)[/u]/isU'] = "<a href='/id$1'>$2</a>";
if (isset($set['bb_red']))$bbcode['/[color=([#0-9a-zA-Z]+)](.+)[/color]/isU']='<span style="color:$1;">$2</span>';
if (isset($set['bb_blue']))$bbcode['/[fon=([#0-9a-zA-Z]+)](.+)[/fon]/isU']='<div style="background-color:$1;">$2</div>';
if (count($bbcode))$msg= preg_replace(array_keys($bbcode), array_values($bbcode), $msg);
if ($set['bb_code']){
$msg=preg_replace_callback('#<?(.*?)?>#sui', 'bbcodehightlight', $msg);
}
return $msg;
}
?>