MastodonStartpage/web/mustard/include/mb_ucfirst.php

8 lines
104 B
PHP
Raw Normal View History

2020-04-11 06:56:24 +02:00
<?php
function mb_ucfirst($str) {
return(mb_strtoupper(mb_substr($str,0,1)).mb_substr($str,1));
}
?>