UPPERCASE
1 2 3 4 5 6 |
<?php $mystring = "Codehaven is a learning portal"; echo $newstring = strtoupper($mystring); ?> |
Results: – CODEHAVEN IS A LEARNING PORTAL
lowercase
1 2 3 4 5 6 |
<?php $mystring = "Codehaven is a learning portal"; echo $newstring = strtolower($mystring); ?> |
Also see capital letters – string uppercase