Voting

: max(four, six)?
(Example: nine)

The Note You're Voting On

prokur.net - there is my email
16 years ago
I believe that mb_ucfirst will be soon added in PHP, but for now this could be useful
<?php

if (!function_exists('mb_ucfirst') && function_exists('mb_substr')) {
function
mb_ucfirst($string) {
$string = mb_strtoupper(mb_substr($string, 0, 1)) . mb_substr($string, 1);
return
$string;
}
}

?>

it also check is mb support enabled or not

<< Back to user notes page

To Top