PHP Functions What will be the output of the following PHP code?echo lcfirst("welcome to my India"); welcome to my india welcome to my India Welcome to my india Welcome to my India welcome to my india welcome to my India Welcome to my india Welcome to my India ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function email(){$email = ’contact@examians.com’;$new = strstr($email, ‘@');echo $new;}email(); contact examians.com @examians.com contact@examians.com contact examians.com @examians.com contact@examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Functions phpinfo() will display about?1. OS version information2. PHP installation3. Variables4. HTTP headers All listed here Option 2 Option 4 Option 1 All listed here Option 2 Option 4 Option 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function constant(){define("GREETING", "Welcome to Narnia",true);echo greeting;} greeting GREETING Welcome to Narnia ERROR greeting GREETING Welcome to Narnia ERROR 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? get_argc() func_get_argc() get_argv() func_get_argv() get_argc() func_get_argc() get_argv() func_get_argv() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Arrays Both A & B None of above Objects Arrays Both A & B None of above Objects ANSWER DOWNLOAD EXAMIANS APP