PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_split() preg_divide() preg_destroy() preg_unchain() preg_split() preg_divide() preg_destroy() preg_unchain() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$line = "You like dogs. I hate dogs. We should marry."$sen = preg_split('/./', $line);print_r($sen); Error Array([0]=>You like dogs. I hate dogs. We should marry.) You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error Array([0]=>You like dogs. I hate dogs. We should marry.) You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_split preg_match_all preg_matchall preg_match preg_split preg_match_all preg_matchall preg_match ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.3 PHP 4.1 PHP 4.2 PHP 4.0 PHP 4.3 PHP 4.1 PHP 4.2 PHP 4.0 ANSWER DOWNLOAD EXAMIANS APP