invertiParola()

Questa funzione prende in input una parola e la restiruisce invertita.

function invertiParola($string){
$revWord=””;
for($i=strlen($string)-1;$i>=0;$i–){
$revWord=$revWord.$string{$i};
}
return $revWord;
}

Be the first to comment on "invertiParola()"

Leave a comment