PHP Functions What will be the output of the following PHP code?echo ord ("hi"); 104 209 103 106 104 209 103 106 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?$str = "Hello World";echo wordwrap($str,5,"n"); Hello World HelloWorld World Hell 0 Wo rld Hello World HelloWorld World Hell 0 Wo rld ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "d" returns "c" returns "cd" returns "f" returns "d" returns "c" returns "cd" returns "f" ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... None of above Both A & B Objects Arrays None of above Both A & B Objects Arrays ANSWER DOWNLOAD EXAMIANS APP
PHP Functions It is always necessary to use parentheses with the print function. False True False True ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . returns a new DateTime object. date_sunrise() getdate() date_create() date() date_sunrise() getdate() date_create() date() ANSWER DOWNLOAD EXAMIANS APP