PASSWORD RESET

Your destination for complete Tech news

PHP

How to convert a string to uppercase in PHP?

471 0
< 1 min read

To convert a string to uppercase in PHP, you can use the strtoupper() function. This function converts all the characters of a string to uppercase, and returns the modified string.

For example:

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

// $string will be equal to 'HELLO'

You can also use the mb_strtoupper() function to convert 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($string, 'UTF-8');

// $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.