MastodonHelp/web/lib/mb_ucfirst.php

8 lines
104 B
PHP
Raw Normal View History

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