update page now

Voting

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

The Note You're Voting On

webmaster at onmyway dot cz
18 years ago
Inspired by the lcfirst function a simple mb_lcfirst to cope with multibyte strings:

<?php
function mb_lcfirst($str, $enc = null)
{
  if($enc === null) $enc = mb_internal_encoding();
  return mb_strtolower(mb_substr($str, 0, 1, $enc), $enc).mb_substr($str, 1, mb_strlen($str, $enc), $enc);
}
?>

<< Back to user notes page

To Top