PHP 8.4.24 Released!

Voting

: five minus five?
(Example: nine)

The Note You're Voting On

rok dot kralj at gmail dot com
19 years ago
Slovenian characters

<?php
    function strtolower_slovenian($string)
    {
        $low=array("Č" => "č", "Ž" => "ž", "Š" => "š");
        return strtolower(strtr($string,$low));
    }

?>

<< Back to user notes page

To Top