PHP Functions What will be the output of the following PHP code?echo stripos("I love php, I love php too!","PHP"); 10 3 7 8 10 3 7 8 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sum($num1, $num2) {$total = $num1 + $num2;echo "chr($total)";}$var1 = "sum";$var1(5, 44); 1 Error Sum 49 1 Error Sum 49 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions phpinfo() will display about?1. OS version information2. PHP installation3. Variables4. HTTP headers Option 4 All listed here Option 2 Option 1 Option 4 All listed here Option 2 Option 1 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';}a();a(); I am a Error I am b Error I am bI am a I am a Error I am b Error I am bI am a ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... None of above Objects Arrays Both A & B None of above Objects Arrays Both A & B ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function TV($string) {echo "my favourite TV show is ".$string;function b() {echo " I am here to spoil this code";}}function b() {echo " I am here to spoil this code";}b(); my favourite TV show isI am here to spoil this code None of the mentioned Error I am here to spoil this code my favourite TV show isI am here to spoil this code None of the mentioned Error I am here to spoil this code ANSWER DOWNLOAD EXAMIANS APP