PHP Functions Which one of the following PHP functions can be used to find files? fold() get_file() glob() file() fold() get_file() glob() file() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. date() date_create() date_sunrise() getdate() date() date_create() date_sunrise() getdate() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo "chr(52)"; 1 4 3 2 1 4 3 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions A function in PHP which starts with ______ (double underscore) is know as. Inbuilt Function Default Function Magic Function User Defined Function Inbuilt Function Default Function Magic Function User Defined Function ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 second 1 microseconds 100 microseconds 10 seconds 1 second 1 microseconds 100 microseconds 10 seconds ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function mine($num){$num = 2 + $num;echo $num;}mine(3); 3 $num None of the mentioned 5 3 $num None of the mentioned 5 ANSWER DOWNLOAD EXAMIANS APP