convert string into non capital letters php

PHP
<?php
echo strtolower("Convert THIS TEXT ALL TO LOWER CASE");
?>$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
// THIS IS LOWER CASE
Source

Also in PHP: