PHP Functions . . . . . converts the keys of an array into values and the values into keys. array_flips() array_trans() array_flip() array_transpose() array_flips() array_trans() array_flip() array_transpose() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following is the right way of defining a function in PHP? function { function body } data type functionName(parameters) { function body } functionName(parameters) { function body } function fumctionName(parameters) { function body } function { function body } data type functionName(parameters) { function body } functionName(parameters) { function body } function fumctionName(parameters) { function body } ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo hex2bin("48656c6c6f20576f726c6421"); Hello World! MCQ questons welcome to india This is PHP! Hello World! MCQ questons welcome to india This is PHP! ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function one() {echo " this works";function two() {echo "this too works";}}one();two(); this works this worksthis too works error this works this too works this works this worksthis too works error this works this too works ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Both A & B Objects Arrays None of above Both A & B Objects Arrays None of above ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ucwords("i love my country"); i love my Country I love my Country I Love My Country I love my country i love my Country I love my Country I Love My Country I love my country ANSWER DOWNLOAD EXAMIANS APP