PHP Functions Which one of the following PHP functions can be used to find files? fold() get_file() file() glob() fold() get_file() file() glob() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ucwords("i love all country"); I Love All Country I love all country i love all Country I love all Country I Love All Country I love all country i love all Country I love all Country ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 microseconds 10 seconds 100 microseconds 1 second 1 microseconds 10 seconds 100 microseconds 1 second ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function email(){$email = ’contact@examians.com’;$new = strstr($email, ‘@');echo $new;}email(); examians.com contact@examians.com @examians.com contact examians.com contact@examians.com @examians.com contact ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following functions can be used to compress a string? gzcompress() compress() zip() zip_compress() gzcompress() compress() zip() zip_compress() 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 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