PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_unchain() preg_divide() preg_destroy() preg_split() preg_unchain() preg_divide() preg_destroy() preg_split() 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 was Cameron Fox. Coffee? Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? Hello! My name was Cameron Fox. Coffee? Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.3 PHP 4.0 PHP 4.2 PHP 4.1 PHP 4.3 PHP 4.0 PHP 4.2 PHP 4.1 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_match preg_find preg_found preg_search preg_match preg_find preg_found preg_search 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() 3 and 4 1 and 2 All of the mentioned None of the mentioned 3 and 4 1 and 2 All of the mentioned None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_matchall preg_split preg_match_all preg_match preg_matchall preg_split preg_match_all preg_match ANSWER DOWNLOAD EXAMIANS APP