<?php
$text = '<tr><td style="background-image:url(\'../какая/досада.jpg\');">la la al la </td></tr>';
$styl='style=';
$space = ' ';
$gt = '>';
@$pos_styl = strpos($text,$styl);
if ($pos_styl !== false)
{
$pos_space = strpos($text,$space,$pos_styl);
$pos_gt = strpos($text,$gt,$pos_styl);
if ($pos_space > $pos_gt)
{
$rep = substr($text,$pos_styl,($pos_gt-$pos_styl));
$text = str_replace($rep,'',$text);
}else{
$rep = substr($text,$pos_styl,($pos_space-$pos_styl));
$text = str_replace($rep,'',$text);
}
}else{
echo "ненайдено";
}
echo htmlspecialchars($text);
?>