PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}a();a(); I am b I am a Error I am bI am a Error I am b I am a Error I am bI am a Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sayHello() {echo "HelloWorld";}$function_holder = "sayHello";$function_holder(); sayHello No Output HelloWorld Error sayHello No Output HelloWorld Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which of the following PHP functions can be used for generating unique id’s? id() uniqueid() mdid() md5() id() uniqueid() mdid() md5() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function foo($msg) {echo "$msg";}$var1 = "foo";$var1("will this work"); $msg 0 Error Will this work $msg 0 Error Will this work ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am bb';}echo 'I am a';}b();a(); Error I am bb I am bI am a I am a Error Error I am bb I am bI am a I am a Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . . converts the keys of an array into values and the values into keys. array_flip() array_transpose() array_flips() array_trans() array_flip() array_transpose() array_flips() array_trans() ANSWER DOWNLOAD EXAMIANS APP