MastodonHelp/web/lib/mb_lcfirst.php

8 lines
104 B
PHP
Raw Normal View History

2023-12-26 11:16:24 +01:00
<?php
function mb_lcfirst($str) {
return(mb_strtolower(mb_substr($str,0,1)).mb_substr($str,1));
}
?>