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(); this worksthis too works error this works this too works this works this worksthis too works error this works this too works this works ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo(atan(0.50)); 0.23568451142521 0.46364760900081 0.11845976421345 1 0.23568451142521 0.46364760900081 0.11845976421345 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . . converts the keys of an array into values and the values into keys. array_flip() array_flips() array_trans() array_transpose() array_flip() array_flips() array_trans() array_transpose() 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(); contact@examians.com contact examians.com @examians.com contact@examians.com contact examians.com @examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am bb';}echo 'I am a';}b();a(); I am bI am a Error I am a Error I am bb I am bI am a Error I am a Error I am bb ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. getdate() date() date_sunrise() date_create() getdate() date() date_sunrise() date_create() ANSWER DOWNLOAD EXAMIANS APP