<?php

function troncaParole($stringa, $maxchars)
{
$troncata ="";
$totchars=0;
$maxchars+=1;
$s=explode(" ",$stringa);
foreach($s as $substr)
{
$totchars+=strlen($substr)+1;
if($totchars <= $maxchars)
$troncata.=$substr . " ";
else break;
}
return trim($troncata);
}


echo troncaParole("ciao a tutti aa come state", 15) . "
";
echo troncaParole("ciao a tutti come state", 15) . "
";
echo troncaParole("ciao a tutti come state", 4) . "
";
echo troncaParole("ciao a tutti come state", 3) . "
";


?>