PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, zero)?
(Example: nine)

The Note You're Voting On

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

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

?>

<< Back to user notes page

To Top