PHP 8.5.0 Alpha 2 available for testing

Voting

: min(seven, six)?
(Example: nine)

The Note You're Voting On

plemieux
19 years ago
Simple multi-bytes ucfirst():

<?php
function my_mb_ucfirst($str) {
$fc = mb_strtoupper(mb_substr($str, 0, 1));
return
$fc.mb_substr($str, 1);
}
?>

<< Back to user notes page

To Top