GancioF2F/lib/mb_ucfirst.php

12 lines
191 B
PHP
Raw Normal View History

2024-10-29 13:51:20 +01:00
<?php
function mb_ucfirst($str) {
if (preg_match('#^.#u',$str,$matches)===1) {
$first=mb_strtoupper($matches[0],'UTF-8');
$str=preg_replace('#^.#u',$first,$str);
}
return $str;
}
?>