PHP beginner |
|
<?
function afkorten($woord, $max)
{
if (strlen($woord) > $max)
{
$nieuw = substr($woord,0,($max-3))."...";
}
else
{
$nieuw = $woord;
}
return $nieuw;
}
echo afkorten($bericht, 250);
?>
<? function afkorten($woord, $max) { { $nieuw = substr($woord,0,($max-3))."..."; } else { $nieuw = $woord; } return $nieuw; } echo afkorten ($bericht, 250); ?>
|