Convert All Uppercase Characters in a String to Lowercase using PHP July 19, 2021 PHP 0 Comments 385 Views strtolower function 123456<?php $text = 'Hello WORLD'; $result = strtolower($text); echo $result; // hello world
Leave a Comment
Cancel reply