PHP Functions Which of the following PHP functions can be used to get the current memory usage? get_usage() get_peak_usage() get_memory_usage() get_memory_peak_usage() get_usage() get_peak_usage() get_memory_usage() get_memory_peak_usage() 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); None of the Mentioned Not True Less Than 0 No Output None of the Mentioned Not True Less Than 0 No Output ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "c" returns "f" returns "d" returns "cd" returns "c" returns "f" returns "d" returns "cd" ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following functions can be used to compress a string? zip_compress() gzcompress() compress() zip() zip_compress() gzcompress() compress() zip() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo hex2bin("48656c6c6f20576f726c6421"); Hello World! MCQ questons This is PHP! welcome to india Hello World! MCQ questons This is PHP! welcome to india ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function _func(){echo "Hello World";}_func(); Hello World None of the mentioned ERROR No Output Hello World None of the mentioned ERROR No Output ANSWER DOWNLOAD EXAMIANS APP