PHP Functions Which of the following PHP functions can be used for generating unique id’s? id() uniqueid() mdid() md5() id() uniqueid() mdid() md5() 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 10 7 3 8 10 7 3 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
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 second 1 microseconds 10 seconds 100 microseconds 1 second 1 microseconds 10 seconds 100 microseconds ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. date() getdate() date_create() date_sunrise() date() getdate() date_create() date_sunrise() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo "chr(52)"; 2 3 4 1 2 3 4 1 ANSWER DOWNLOAD EXAMIANS APP