PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5.2 PHP 4 PHP 5.3 PHP 5 PHP 5.2 PHP 4 PHP 5.3 PHP 5 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_matchall preg_split preg_match preg_match_all preg_matchall preg_split preg_match preg_match_all ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output if we replace the line $num = preg_grep(“/[0-5]/”, $number); with $num = preg_grep(“/[0-5]/”, $number, PREG_GREP_INVERT);? Array([0]=>0 [5]=>5) Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) Array([2]=>two [3]=>three [4]=>four) Array([1]=> 1) Array([0]=>0 [5]=>5) Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) Array([2]=>two [3]=>three [4]=>four) Array([1]=> 1) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_found preg_search preg_match preg_find preg_found preg_search preg_match preg_find ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_divide() preg_split() preg_unchain() preg_destroy() preg_divide() preg_split() preg_unchain() preg_destroy() ANSWER DOWNLOAD EXAMIANS APP