PHP Functions
Which one of the following PHP functions can be used to build a function that accepts any number of arguments?

get_argv()
get_argc()
func_get_argc()
func_get_argv()

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