PHP Functions Which one of the following PHP functions can be used to find files? glob() file() get_file() fold() glob() file() get_file() fold() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo strtr("Hilla Warld","ia","eo"); Hilla Warld eo Hello World ia Hilla Warld eo Hello World ia ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sayHello() {echo "HelloWorld";}$function_holder = "sayHello";$function_holder(); No Output HelloWorld Error sayHello No Output HelloWorld Error sayHello ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function one() {echo " this works";function two() {echo "this too works";}}one();two(); error this works this too works this worksthis too works this works error this works this too works this worksthis too works this works 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 3 7 10 8 3 7 10 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