what is the syntax of the STRTOLOWER() function in php?
strtolower(string)
Parameter | Description |
---|---|
string | Required. Specifies the string to convert |
examples of the STRTOLOWER() function
Example 1. In this example, we convert all characters to lowercase.
<?php
echo strtolower("Hello WORLD.");
??