Tool that performs strtolower()

It might be useful to use lowercase transformation when using file names and URL’s of web documents for example. The same applies to login when we may allow users use case-insensitive login (but not password), so then we would store login as lowercase in our database by using strtolower() function.

strtolower is a PHP function that converts all characters of a given input to lowercase.

 

Code example

<?php //returns strtolower of a variable $str[] = "aAbBcC...EnD"; echo "Output is: ".htmlspecialchars(strtolower($str[0])); //aabbcc...end ?>

Other tools & help

If you need help with PHP scripting, Apache setup and server-related situations, drop me a line. You’re also welcome to visit other tools - they’re listed below.