PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5 PHP 4 PHP 5.2 PHP 5.3 PHP 5 PHP 4 PHP 5.2 PHP 5.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? implode() concatenate() explode() concat() implode() concatenate() explode() concat() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_search preg_match preg_found preg_find preg_search preg_match preg_found preg_find 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! Error No Output is returned Username must be all lowercase! Username is all lowercase! Error No Output is returned Username must be all lowercase! 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 SaladSaladSaladSaladSalad Salad is good is good Salad SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad Salad is good is good Salad SaladSaladSaladSaladSalad is good ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 8 7 10 9 8 7 10 9 ANSWER DOWNLOAD EXAMIANS APP