{% else-1 %}
Функция удаляет всю графику из строки.

                        
<?php
function stripImages($text)
{
$text = preg_replace('/(<a[^>]*>)(<img[^>]+alt=")([^"]*)("[^>]*>)(</a>)/i', '$1$3$5<br />', $text);
$text = preg_replace('/(<img[^>]+alt=")([^"]*)("[^>]*>)/i', '$2<br />', $text);
$text = preg_replace('/<img[^>]*>/i', '', $text);
return $text;
}
?>
0 34 0
Без комментариев...