PHP Functions . . . . . converts the keys of an array into values and the values into keys. array_trans() array_flip() array_transpose() array_flips() array_trans() array_flip() array_transpose() array_flips() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function string(){echo strstr("Hello world!", 111);}string(); Hello world! 111 o world! No Output Hello world! 111 o world! No Output ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Both A & B None of above Arrays Objects Both A & B None of above Arrays Objects ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo stripos("I love php, I love php too!","PHP"); 7 3 10 8 7 3 10 8 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}b();a(); I am bI am a Error I am b I am a Error I am bI am a Error I am b I am a Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo lcfirst("welcome to India"); welcome to India welcome to india Welcome to India Welcome to india welcome to India welcome to india Welcome to India Welcome to india ANSWER DOWNLOAD EXAMIANS APP