Multibyte lower case first char of a string; first commit
This commit is contained in:
parent
8eaeaf0d96
commit
f3081612da
1 changed files with 7 additions and 0 deletions
7
web/site/mustard/include/mb_lcfirst.php
Normal file
7
web/site/mustard/include/mb_lcfirst.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
function mb_lcfirst($str) {
|
||||
return(mb_strtolower(mb_substr($str,0,1)).mb_substr($str,1));
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in a new issue