template/src/StringFormat.php

11 lines
212 B
PHP
Raw Normal View History

2018-07-02 16:47:09 +00:00
<?php
namespace Krutush\Template;
class StringFormat{
public static function ucfirst(string $str): string{
$fc = mb_strtoupper(mb_substr($str, 0, 1));
return $fc.mb_substr($str, 1);
}
}