August 17, 2024
Change string in lower case with strtolower function
You can convert a string into lower case (all letters in small letters) with using of strtolower function. The example of strtolower method is mentioned below:
Code
<?php
$greetingStr = "Good Morning";
$result = strtolower($greetingStr);
echo $result;
?>