PHP Functions
Which of the following are valid function names?
1. function()
2. €()
3. .function()
4. $function()

None of the mentioned
3 and 4
Only 2
All of the mentioned

ANSWER DOWNLOAD EXAMIANS APP

PHP Functions
What will be the output of the following PHP code?
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);

O’Malley wins the heavyweight championship!
O’malley Wins The Heavyweight Championship!
o’malley wins the heavyweight championship!
O’Malley Wins The Heavyweight Championship!

ANSWER DOWNLOAD EXAMIANS APP