One Line Scripts - by Paul Poisson

Change Case:

$the_variable = ucfirst($the_variable);   //Mixed Case : Uppercase The First Letter In Your Result

$the_variable = strtoupper($the_variable);   //Upper Case : UPPERCASE ALL LETTERS IN YOUR RESULT

$the_variable = strtolower($the_variable);   //Lower case : lowercase all letters in your result