PHP Functions Which of the following PHP functions can be used to get the current memory usage? get_memory_usage() get_peak_usage() get_usage() get_memory_peak_usage() get_memory_usage() get_peak_usage() get_usage() get_memory_peak_usage() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sum($num1, $num2) {$total = $num1 + $num2;echo "chr($total)";}$var1 = "sum";$var1(5, 44); 49 Error Sum 1 49 Error Sum 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions strlen() returns the length of the string on success and . . . . if the string is empty. 0 Garbage value -1 NULL 0 Garbage value -1 NULL ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ucwords("i love my country"); I Love My Country I love my country I love my Country i love my Country I Love My Country I love my country I love my Country i love my Country 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 The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "f" returns "d" returns "cd" returns "c" returns "f" returns "d" returns "cd" returns "c" ANSWER DOWNLOAD EXAMIANS APP