PHP Regular Expressions POSIX stands for Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portative Operating System Interface for Linux 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 What will be the output of the following PHP code?$foods = array("pasta", "steak", "fish", "potatoes");$food = preg_grep("/^s/", $foods);print_r($food); Array ( [3] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) Array ( [0] => potatoes ) Array ( [3] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) Array ( [0] => potatoes ) 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!"; Error Username is all lowercase! No Output is returned Username must be all lowercase! Error Username is all lowercase! No Output is returned Username must be 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 2 and 3 1 and 2 2 and 4 1 and 4 2 and 3 1 and 2 2 and 4 1 and 4 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() implode() concat() explode() concatenate() implode() concat() explode() ANSWER DOWNLOAD EXAMIANS APP