PHP Functions What will be the output of the following PHP code ?function string(){echo strstr("Hello world!", 111);}string(); No Output Hello world! o world! 111 No Output Hello world! o world! 111 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
PHP Functions What will be the output of the following PHP code ?function constant(){define("GREETING", "Welcome to Narnia",true);echo greeting;} greeting Welcome to Narnia GREETING ERROR greeting Welcome to Narnia GREETING ERROR ANSWER DOWNLOAD EXAMIANS APP
PHP Functions phpinfo() will display about?1. OS version information2. PHP installation3. Variables4. HTTP headers Option 1 Option 2 Option 4 All listed here Option 1 Option 2 Option 4 All listed here ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which of the following PHP functions can be used for generating unique id’s? mdid() id() md5() uniqueid() mdid() id() md5() uniqueid() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function constant(){define("GREETING", "Welcome to Narnia");echo greeting;} greeting Welcome to Narnia ERROR GREETING greeting Welcome to Narnia ERROR GREETING ANSWER DOWNLOAD EXAMIANS APP