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_divide() preg_unchain() preg_split() preg_destroy() preg_divide() preg_unchain() preg_split() 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 You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. I hate dogs. We should marry.) Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error You like dogs. I hate dogs. We should marry. Array([0]=>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 What will be the output of the following PHP code?$number = array(0,1,two,three,four,5);$num = preg_grep("/[0-5]/", $number);print_r($num); Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) Array([1]=> 1) Array([2]=>two [3]=>three [4]=>four) Array([0]=>0 [1]=>1 [5]=>5) Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) Array([1]=> 1) Array([2]=>two [3]=>three [4]=>four) Array([0]=>0 [1]=>1 [5]=>5) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which among the following is/are not a metacharacter?1. /a2. /A3. /b4. /B 1 and 3 2 and 4 Only 1 2, 3 and 4 1 and 3 2 and 4 Only 1 2, 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match_all preg_split preg_match preg_matchall preg_match_all preg_split preg_match preg_matchall ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$foods = array("pasta", "steak", "fish", "potatoes");$food = preg_grep("/^s/", $foods);print_r($food); Array ( [0] => potatoes ) Array ( [1] => steak ) Array ( [3] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [0] => potatoes ) Array ( [1] => steak ) Array ( [3] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) ANSWER DOWNLOAD EXAMIANS APP