PHP 8.4.24 Released!

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

marco at recchiuti dot it
19 years ago
Maybe it is not so elegant, but it Works.
It's just a fast Idea and it is what I need.
Any hacks for other characters (link !, ? etc etc) should help.

function RemoveShouting($string)
{
     $frase = "";    
     $astri = explode(".", $string);
     foreach ($astri as $elem)
    $frase .= " ".ucfirst(trim(strtolower($elem))).". ";
       
    return trim($frase);
}

Cheers!
M

<< Back to user notes page

To Top