PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 8 10 7 9 8 10 7 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_split preg_match_all preg_match preg_matchall preg_split preg_match_all preg_match preg_matchall ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [A-Za-z0-9] [A-za-z] [a-z] [A-z] [A-Za-z0-9] [A-za-z] [a-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? str_uppercase() strtoupper() uppercase() struppercase() str_uppercase() strtoupper() uppercase() struppercase() 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() implode() concat() concatenate() explode() implode() concat() concatenate() ANSWER DOWNLOAD EXAMIANS APP