PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; SaladSaladSaladSaladSalad is good is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good is good Salad is good SaladSaladSaladSaladSalad Salad is good 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 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 must be all lowercase! Error No Output is returned Username is all lowercase! Username must be all lowercase! Error No Output is returned Username is 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_findre() preg_replace() preg_find_replace() preg_find() preg_findre() preg_replace() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$url = "contact@examians.com";echo ltrim(strstr($url, "@"),"@"); contact contact@ contact@examians.com examians.com contact contact@ contact@examians.com examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? implode() concat() explode() concatenate() implode() concat() explode() concatenate() ANSWER DOWNLOAD EXAMIANS APP