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_unchain() preg_split() preg_destroy() preg_divide() preg_unchain() preg_split() preg_destroy() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions PHP has long supported two regular expression implementations known as _______ and _______.1. Perl2. PEAR3. Pearl4. POSIX 2 and 3 1 and 4 1 and 2 2 and 4 2 and 3 1 and 4 1 and 2 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX stands for Portable Operating System Interface for Linux Portable Operating System Interface for Unix Portative Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Linux Portable Operating System Interface for Unix Portative Operating System Interface for Linux Portative Operating System Interface for Unix 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!"; No Output is returned Username is all lowercase! Error Username must be all lowercase! No Output is returned Username is all lowercase! Error Username must be all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 10 9 7 8 10 9 7 8 ANSWER DOWNLOAD EXAMIANS APP
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 SaladSaladSaladSaladSalad Salad is good is good Salad SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad Salad is good is good Salad ANSWER DOWNLOAD EXAMIANS APP