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_unchain() preg_divide() preg_split() preg_destroy() preg_unchain() preg_divide() preg_split() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Say we have two compare two strings which of the following function/functions can you use?1. strcmp()2. strcasecmp()3. strspn()4. strcspn() 1 and 2 3 and 4 All of the mentioned None of the mentioned 1 and 2 3 and 4 All of the mentioned None of the mentioned 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? concatenate() explode() implode() concat() concatenate() explode() implode() concat() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_match preg_found preg_find preg_search preg_match preg_found preg_find preg_search ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$str = "Hello! My name is Cameron Fox. Coffee?";$find = array('/is/','/coffee/');$replace = array('/was/','/tea/');echo preg_replace ($find, $replace, $str); Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? strtoupper() uppercase() struppercase() str_uppercase() strtoupper() uppercase() struppercase() str_uppercase() ANSWER DOWNLOAD EXAMIANS APP