PASSWORD RESET

Your destination for complete Tech news

PHP

How to convert a string to lowercase in PHP?

530 0
< 1 min read

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

For example:

$string = 'HELLO';
$string = strtolower($string);

// $string will be equal to 'hello'

You can also use the mb_strtolower() function to convert a multibyte string to lowercase. This function requires the mbstring extension to be enabled in your PHP configuration.

For example:

$string = 'HÉLLO';
$string = mb_strtolower($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.