Spróbuj tak
Kod
function krotki($text) {
$dec = array("&", "\"", "'", "\\", '\"', "\'", "<", ">");
$enc = array("&", """, "'", "\", """, "'", "<", ">");
$text = str_replace($enc, $dec, $text);
if (strlen($text) > 100) $text = substr($text, 0, (100-3))."...";
$text = str_replace($dec, $enc, $text);
return $text;
}
$tytul = 'aaaaaaaaaaaaaaaaaaaaaaaa';
echo krotki($tytul);