PASSWORD RESET

Your destination for complete Tech news

PHP

How to convert the first letter of a word to uppercase in PHP?

399 0
< 1 min read

To convert the first letter of a word to uppercase in PHP, you can use the ucfirst() function. This function converts the first character of a string to uppercase, and returns the modified string.

For example:

$string = 'hello';
$string = ucfirst($string);

// $string will be equal to 'Hello'

You can also use the mb_strtoupper() function to convert the first character of a multibyte string to uppercase. This function requires the mbstring extension to be enabled in your PHP configuration.

For example:

$string = 'héllo';
$string = mb_strtoupper(mb_substr($string, 0, 1)) . mb_substr($string, 1);

// $string will be equal to 'Héllo'

Leave A Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.