/
v.bolshakov
/
AIEcosystem-Testing
Обзор
Документация
Войти
/
v.bolshakov
/
AIEcosystem-Testing
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
common/helpers/utf8/ucfirst.php
17 строк
285 B
Developer
Initial commit
03 авг 2026, 17:43
03 авг 2026, 17:43
7433917
Код
Авторство
О чём код?
<?php use common\helpers\Utf8Helper; /** * Utf8Helper::ucfirst */ function _ucfirst($str) { if (Utf8Helper::isAscii($str)) { return ucfirst($str); } preg_match('/^(.?)(.*)$/us', $str, $matches); return Utf8Helper::strtoupper($matches[1]) . $matches[2]; }