function url_replace($m) {
global $config;
if (!isset($m[3])) {
$target = (strpos($m[1], $config['home']) === false) ? ' target="_blank"' : '';
return '' . $m[2] . '';
} else {
if ((!preg_match('/\.gif$/i',$m[3])) && (!preg_match('/\.png$/i',$m[3])) && (!preg_match('/\.jpg$/i',$m[3]))){
$target = (strpos($m[3], $config['home']) === false) ? ' target="_blank"' : '';
return '' . $m[3] . '';
}
else return $m[3];
}
}
$msg = preg_replace('#\[img\](.*?)\[/img\]#si', '<img src=\1 height=80 weight=100>
<a href=\1>загрузка</a>', $msg);
Изменил: QuyCuong (26.07.2012 / 05:38)