PHP Functions What will be the output of the following PHP code ?$var = 10;function one(){echo $var;}one(); No Output Error None of the Mentioned 10 No Output Error None of the Mentioned 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following PHP functions can be used to build a function that accepts any number of arguments? func_get_argc() func_get_argv() get_argv() get_argc() func_get_argc() func_get_argv() get_argv() get_argc() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function 2myfunc(){echo "Hello World";}2myfunc(); No Output None of the mentioned Hello World ERROR No Output None of the mentioned Hello World ERROR ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?$op2 = "blabla";function foo($op1) {echo $op1;echo $op2;}foo("hello"); helloblablablabla helloblabla hello error helloblablablabla helloblabla hello error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 second 100 microseconds 10 seconds 1 microseconds 1 second 100 microseconds 10 seconds 1 microseconds 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