PHP Functions . . . . returns a new DateTime object. date() date_sunrise() getdate() date_create() date() date_sunrise() getdate() date_create() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions strlen() returns the length of the string on success and . . . . if the string is empty. NULL 0 Garbage value -1 NULL 0 Garbage value -1 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo(atan(0.50)); 0.46364760900081 0.23568451142521 1 0.11845976421345 0.46364760900081 0.23568451142521 1 0.11845976421345 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function constant(){define("GREETING", "Welcome to Narnia",true);echo greeting;} GREETING ERROR Welcome to Narnia greeting GREETING ERROR Welcome to Narnia greeting 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 What will be the output of the following PHP code ?function mine($m){if ($m < 0)echo "less than 0";if ($ >= 0)echo "Not True";}mine(0); Not True No Output None of the Mentioned Less Than 0 Not True No Output None of the Mentioned Less Than 0 ANSWER DOWNLOAD EXAMIANS APP