In order to format every character to be lowercase with PHP, we can use PHP built-in function strtolower() like the following example:
<?php
$words = "Kondekativ Snippet";
echo strtolower($words);
The code above will print out the following result:
"kodekativ snippet"