PHP 8.6.0 Beta 1 is available for testing

Voting

: min(two, nine)?
(Example: nine)

The Note You're Voting On

Rasa Ravi at tantrajoga dot cz
21 years ago
For CZECH characters:
<?php
$text = mb_convert_case($text, MB_CASE_LOWER, "Windows-1251");
?>
The right encoding Windows-1250 is not valid (see the list mb_list_encodings), but Windows-1251 will do the same 100%. The function strtolower() ignores czech characters with diacritics.

<< Back to user notes page

To Top