non l'ho testato, l'ho scritto un po' di getto, spero non contenga erroriCodice PHP:
function AllungaStringa ($original) {
$newstring = $original;
$lenStart = strlen ($original)
$lenStop = 20;
$len = $lenStart;
$aggiungere = 'A';
while ($len < $lenStop)
{ $newstring = $newstring.$aggiungere;
$len++; }
return $newstring;
}