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 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?$str = "Hello World";echo wordwrap($str,5,"n"); World Hello World HelloWorld Hell 0 Wo rld World Hello World HelloWorld Hell 0 Wo rld ANSWER DOWNLOAD EXAMIANS APP
PHP Functions A function in PHP which starts with ______ (double underscore) is know as. Default Function Inbuilt Function User Defined Function Magic Function Default Function Inbuilt Function User Defined Function Magic Function ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The arguments in a function are evaluated from ..... sometimes left to right and sometimes right to left right to left Always right to left left to right sometimes left to right and sometimes right to left right to left Always right to left left to right ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which of the following PHP functions can be used for generating unique id’s? md5() mdid() uniqueid() id() md5() mdid() uniqueid() id() ANSWER DOWNLOAD EXAMIANS APP