guarda quest'esempio

Codice PHP:
<?php
$text
="Ciaoo      ciao  ciao  ciao ciao";
$text_ex=explode(" ",$text);
$tot=count($text_ex);
while(
$tot>=0)
{
echo 
$text_ex[$tot]." ";
$tot--;
}
?>