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([1]=> 1) Array([2]=>two [3]=>three [4]=>four) Array([0]=>0 [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) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username is all lowercase! No Output is returned Error Username must be all lowercase! Username is all lowercase! No Output is returned Error Username must be all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP function is used to do a find and replace on a string or an array? preg_find_replace() preg_find() preg_replace() preg_findre() preg_find_replace() preg_find() preg_replace() preg_findre() 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
PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 8 10 7 9 8 10 7 9 ANSWER DOWNLOAD EXAMIANS APP