Multibyte lower case first char of a string; first commit

This commit is contained in:
pezcurrel 2022-12-20 22:59:24 +01:00
parent 8eaeaf0d96
commit f3081612da

View file

@ -0,0 +1,7 @@
<?php
function mb_lcfirst($str) {
return(mb_strtolower(mb_substr($str,0,1)).mb_substr($str,1));
}
?>