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!"; Error No Output is returned Username must be all lowercase! Username is all lowercase! Error No Output is returned Username must be all lowercase! Username is all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions PHP has long supported two regular expression implementations known as _______ and _______.1. Perl2. PEAR3. Pearl4. POSIX 1 and 4 1 and 2 2 and 4 2 and 3 1 and 4 1 and 2 2 and 4 2 and 3 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? concatenate() concat() explode() implode() concatenate() concat() explode() implode() ANSWER DOWNLOAD EXAMIANS APP
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 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 What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad ANSWER DOWNLOAD EXAMIANS APP