Voting

: max(two, five)?
(Example: nine)

The Note You're Voting On

coder at bulgaria dot bg
16 years ago
for cyrillic and UTF 8 use mb_convert_case

exampel

<?php
$string
= "Австралия";
$string = mb_convert_case($string, MB_CASE_LOWER, "UTF-8");
echo
$string;

//output is: австралия
?>

<< Back to user notes page

To Top