1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?php $dog = 'hello world!'; echo $capdog = ucfirst($dog); // Hello world! $dog = 'HELLO WORLD!'; echo $lowdog = ucfirst(strtolower($dog)); // Hello world! $dog = 'hello world!'; echo $bothdog = ucwords($dog); // Hello World! $str = "I WANT LOWERCASE LETTERS"; echo $str = strtolower($str); // i want lowercase letters ?> |
Also see Upper case letters – change variable