PHP Functions What will be the output of the following PHP code?function onespan>() {define("const","I am awesome!");echo constant("const");}one(); const, I am awesome!! “const”,”I am awesome!” const I am awesome!! const, I am awesome!! “const”,”I am awesome!” const I am awesome!! ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following functions can be used to compress a string? gzcompress() zip() compress() zip_compress() gzcompress() zip() compress() zip_compress() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo strtr("Hilla Warld","ia","eo"); Hello World ia Hilla Warld eo Hello World ia Hilla Warld eo 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";}}a("Sherlock");b(); Error my favourite TV show is SherlockI am here ro spoil this code I am here to spoil this code None of the mentioned Error my favourite TV show is SherlockI am here ro spoil this code I am here to spoil this code None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good for health."; is good for health Salad SaladSaladSaladSaladSalad is good for health is good for health SaladSaladSaladSaladSalad Salad is good for health is good for health Salad SaladSaladSaladSaladSalad is good for health is good for health SaladSaladSaladSaladSalad Salad is good for health 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"); Will this work Error 0 $msg Will this work Error 0 $msg ANSWER DOWNLOAD EXAMIANS APP