Question: Which of the following functions are available to aid you in manipulating the case of characters in a string ?
A
B
C
D
strtolower();
B
strtoupper();
C
ucfirst();
D
ucword();
Note: Not available
<?php $url = "http://WWW.EXAMPLE.COM/"; echo strtolower($url); ?>Which of the following is correct output for above Statement ?
<?php $sentence = "the newest version of PHP was released today!"; echo ucfirst($sentence); ?>