PHP code example of dimns / mb_ucfirst
1. Go to this page and download the library: Download dimns/mb_ucfirst library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dimns / mb_ucfirst example snippets
$str = 'пример текста';
// Пример текста
echo mb_ucfirst($str, 'UTF-8');