PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match_all preg_matchall preg_split preg_match preg_match_all preg_matchall preg_split preg_match ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? uppercase() strtoupper() str_uppercase() struppercase() uppercase() strtoupper() str_uppercase() struppercase() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username is all lowercase! Error No Output is returned Username must be all lowercase! Username is all lowercase! Error No Output is returned Username must be all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? explode() concat() concatenate() implode() explode() concat() concatenate() implode() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions finds the last occurrence of a string, returning its numerical position? strlast() strrpos() strlastpos() strpos() strlast() strrpos() strlastpos() strpos() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_destroy() preg_split() preg_divide() preg_unchain() preg_destroy() preg_split() preg_divide() preg_unchain() ANSWER DOWNLOAD EXAMIANS APP