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?echo stripos("I love php, I love php too!","PHP"); 8 10 7 3 8 10 7 3 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "f" returns "cd" returns "d" returns "c" returns "f" returns "cd" returns "d" returns "c" ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}b();a(); I am b I am bI am a I am a Error Error I am b I am bI am a I am a Error Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo "chr(52)"; 3 1 4 2 3 1 4 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ucwords("i love my country"); I love my Country I Love My Country I love my country i love my Country I love my Country I Love My Country I love my country i love my Country ANSWER DOWNLOAD EXAMIANS APP