Convert All Uppercase Characters in a String to Lowercase using PHP

strtolower function

<?php

$text = 'Hello WORLD';
$result = strtolower($text);

echo $result; // hello world

Leave a Comment

Cancel reply

Your email address will not be published.